From a78547a5a8ffb289d065603f82aed609769f258a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoffer=20Str=C3=B6mberg?= Date: Wed, 25 Sep 2024 20:31:43 +0200 Subject: [PATCH] first commit --- notebooks/topo_playground.ipynb | 198 ++++++++++++++---- src/storm_water_management/main.py | 1 + .../storm_water_management.py | 6 - src/storm_water_management/utils.py | 93 ++++++++ tests/test_unit.py | 1 + 5 files changed, 256 insertions(+), 43 deletions(-) create mode 100644 src/storm_water_management/main.py delete mode 100644 src/storm_water_management/storm_water_management.py create mode 100644 src/storm_water_management/utils.py diff --git a/notebooks/topo_playground.ipynb b/notebooks/topo_playground.ipynb index 38cd156..0f50a04 100644 --- a/notebooks/topo_playground.ipynb +++ b/notebooks/topo_playground.ipynb @@ -12,42 +12,24 @@ "cell_type": "code", "execution_count": 1, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[50.0, 0.0, 0.0, -50.0, 300025.0, 6499975.0]\n" - ] - } - ], + "outputs": [], "source": [ - "import rasterio\n", "import numpy as np\n", "\n", + "from storm_water_management import utils\n", + "\n", "tif_filename = r\"/home/chris/projects/ifk-storm-water-management/data/64_3_2023.tif\"\n", "tfw_filename = tif_filename.split(\".\")[0] + r\".tfw\"\n", "\n", - "with rasterio.open(tif_filename) as f:\n", - " data = f.read()\n", + "elevation_data = utils.get_elevation_data_from_tif(tif_filename)\n", + "tfw = utils.get_coordinates_from_tfw(tfw_filename)\n", "\n", - "with open(tfw_filename, \"r\") as f:\n", - " tfw = [float(x) for x in f.readlines()]\n", - " print(tfw)\n", - "\n", - "elev_max = np.amax(data)\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Plot elevation data" + "elev_max = np.amax(elevation_data)\n" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 5, "metadata": {}, "outputs": [ { @@ -66,7 +48,7 @@ "\n", "fig = plt.figure(figsize=[12,8])\n", "ax = fig.add_axes([0, 0, 1, 1])\n", - "raster_image=ax.imshow(data[0],cmap=\"terrain\",vmax=elev_max,vmin=-100)\n", + "raster_image=ax.imshow(elevation_data,cmap=\"terrain\",vmax=elev_max,vmin=-100)\n", "fig.colorbar(raster_image, ax=ax,label=\"Elevation (in m) \",orientation='horizontal',extend='both',shrink=0.7)\n", "plt.show()\n", "\n" @@ -88,7 +70,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -103,7 +85,7 @@ "p Setting up boolean flood array matrix...\u001b[39m\n", "p Adding cells to the priority queue...\u001b[39m\n", "p Performing Priority-Flood+Epsilon...\u001b[39m\n", - "\u001b[2Kt succeeded in 1.25401 s\u001b[39m======================] (100% - 0.0s - 1 threads)\n", + "\u001b[2Kt succeeded in 1.87844 s\u001b[39m======================] (100% - 0.0s - 1 threads)\n", "m Cells processed = 4000000\u001b[39m\n", "m Cells in pits = 777150\u001b[39m\n", "\u001b[91mW \u001b[91mW In assigning negligible gradients to depressions, some depressions rose above the surrounding cells. This implies that a larger storage type should be used. The problem occured for 2781 of 4000000.\u001b[39m\u001b[39m\n", @@ -112,13 +94,109 @@ "C O'Callaghan, J.F., Mark, D.M., 1984. The Extraction of Drainage Networks from Digital Elevation Data. Computer vision, graphics, and image processing 28, 323--344.\u001b[39m\n", "\n", "c topology = D8\u001b[39m\n", - "\u001b[2K[==================================================] (100% - 0.0s - 1 threads)\n", + "\u001b[2K[==================================================] (100% - 0.0s - 1 threads)========= ] (23% - 0.1s - 1 threads) ] (59% - 0.1s - 1 threads)\n", "A Generic Flow Accumulation Algorithm\u001b[39m\n", "p Creating dependencies array...\n", "\u001b[39m\n", "\u001b[95md Source cells found = 1457392\u001b[39m\n", "p Calculating flow accumulation...\u001b[39m\n", - "\u001b[2Kt Wall-time = 0.4275 s\u001b[39m==================] (100% - 0.0s - 1 threads)\n", + "\u001b[2Kt Wall-time = 0.452207 s\u001b[39m================] (100% - 0.0s - 1 threads)\n" + ] + } + ], + "source": [ + "import richdem as rd\n", + "\n", + "dem = rd.LoadGDAL(tif_filename, no_data=-9999)\n", + "\n", + "#Fill depressions with epsilon gradient to ensure drainage\n", + "rd.FillDepressions(dem, epsilon=True, in_place=True)\n", + "\n", + "#Get flow accumulation with no explicit weighting. The default will be 1.\n", + "accum_d8 = rd.FlowAccumulation(dem, method='D8')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{\"geometry\": {\"coordinates\": [300050.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.80465698242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.27117919921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.15628814697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.40780639648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.380126953125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.51130676269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.22628021240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.11119842529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.047607421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.44334411621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.926090240478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.47038650512695, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.19091033935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.756221771240234, \"water_flow\": 4804.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.905670166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.94743347167969, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.1216926574707, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.49863815307617, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.10081481933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.76787567138672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.27758026123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.45458984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.42326354980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.74454498291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.4339599609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.41755676269531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.85899353027344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.64058685302734, \"water_flow\": 170.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.47240447998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.51209259033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4223861694336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.50299072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9609375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.0671157836914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.50823974609375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.46993255615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.47567749023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.64933776855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.85954284667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.44100189208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.33379364013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.31303405761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.2424087524414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.64362335205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.6250991821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.39906311035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.94650268554688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.25460052490234, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.3384017944336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.63236999511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.62251281738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.53929138183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.93677520751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.72154235839844, \"water_flow\": 148.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.84711456298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.96524047851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.63555908203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.02792358398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9697494506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.26310729980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.14974212646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.45964050292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.43502044677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.15856170654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.72107696533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.98956298828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.54026794433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.88485717773438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.44544982910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.34500122070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.93791198730469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.75780487060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.30941772460938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.61522674560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.60856628417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.69042205810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.28054809570312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.74024200439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.3838119506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.6291732788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.04216003417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.61988830566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.08537292480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.03923797607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.40115356445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.99879455566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.1705322265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.20988464355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.08922576904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.07928466796875, \"water_flow\": 535.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.15691375732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.34619140625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.4336166381836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.72122955322266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.93185424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.9303207397461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.78760528564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.95512390136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.1690444946289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.94693756103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.52877807617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.2887954711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.30828857421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.45166778564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.5994644165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.468505859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.418701171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.02326965332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.96733093261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.62109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.0816879272461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4894256591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.99860382080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.69892120361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.00739288330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.4623031616211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.31798553466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.59687805175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.54708862304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.07447052001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.5582275390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.51313781738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.22480773925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.42459869384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.09298706054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.2357177734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.65624237060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.75563049316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7258529663086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.17449188232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.5317153930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.6853485107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.43997192382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2767562866211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.06842041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2488250732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.092041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.75582885742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.27073669433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1680450439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.42008209228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.33326721191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.19700622558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.517181396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.47111892700195, \"water_flow\": 22804.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.77389144897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.976802825927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.554019927978516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.43330383300781, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.165748596191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.07321548461914, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.70066452026367, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.13016510009766, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.0745620727539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9942398071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.09114074707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6560821533203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.56089782714844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.02294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.3228759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.0749969482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.63404846191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.90089416503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1904754638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.2433624267578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.035888671875, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4900665283203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.30230712890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.28945922851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.03570556640625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.07174682617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.3360595703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.4833984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8758087158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.2399139404297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.45077514648438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.73594665527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.79159545898438, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.92095947265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.60810089111328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4352569580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.0338592529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.6050567626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.02471923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.34941864013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.94587707519531, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.01829528808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.81410217285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.0617904663086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.85865783691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.25, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.35812377929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.3545913696289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.75367736816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.3485870361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.80804443359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.80709838867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.87369537353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.98158264160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.19942474365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.78734588623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.888427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.28853607177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.76822662353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.19853210449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.1689682006836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.85060119628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.95510864257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.7281723022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.24885177612305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.37738037109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.08827590942383, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.978004455566406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.785194396972656, \"water_flow\": 4799.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.95029067993164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.99726104736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.00885009765625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.205108642578125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.989288330078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.10553741455078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.34425354003906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.33277893066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.89308166503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.6644058227539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.7010726928711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.46405792236328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.84233093261719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.94962310791016, \"water_flow\": 164.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.70533752441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.61528778076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.47981262207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.64234161376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.11485290527344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.57946014404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.90892028808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.43306732177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.57939910888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.2331771850586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.9792709350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.8280029296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.32795715332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.38089752197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.23592376708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.50572967529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.91637420654297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.78154754638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1135025024414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.48465728759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.07430267333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.33714294433594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.25235748291016, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.91617584228516, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.35712432861328, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.57929229736328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.5982666015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1418228149414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.65283966064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.04945373535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.23854064941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.08070373535156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.02265167236328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.97815704345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.5943832397461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.97551727294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.23751068115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.75114440917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3268051147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.44987487792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.35613250732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.15938568115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.93754577636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.45938110351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03826141357422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.61046600341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.15396118164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.98204040527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.76978302001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.52537536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.5547866821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.2533950805664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.38684844970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.3145980834961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.47508239746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.91169738769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.91813659667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.22698974609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.14189147949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 520.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.05845642089844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.3757095336914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.51712799072266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.3194580078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.3265380859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.5134506225586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.80574798583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.8792953491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.81336975097656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.90594482421875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.2893295288086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.09074401855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.35355377197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.33075714111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.85256958007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.47219848632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.22628021240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.37261199951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.08036041259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.21141052246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.07738494873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.59112548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.53762817382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.66541290283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.26480865478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.93000030517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.94943237304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.58832550048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.93339538574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.0377426147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.68341827392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.23907470703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.0323715209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02462005615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.32941436767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.15850067138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.49581146240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.46591186523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.26116943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.80713653564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.23804473876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.48170471191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.19227600097656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.36781311035156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.3091278076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.06503295898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.77198791503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.23219299316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.04467010498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.42374420166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.5047836303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.25833892822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.62621307373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.414710998535156, \"water_flow\": 22801.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.710018157958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.61944580078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.50734329223633, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.1744270324707, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.66954040527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.17021179199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.22398376464844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.59139251708984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.3048324584961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.5829086303711, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.35826110839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.4752197265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.94012451171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.35874938964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.85459899902344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.95469665527344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.72903442382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.45523071289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.11996459960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8430633544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.5411834716797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.16346740722656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.62960815429688, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.62615966796875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.51181030273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.5807647705078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.09814453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 166.55384826660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.85943603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.9047088623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4815673828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.56886291503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.77134704589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.79491424560547, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.76083374023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.65994262695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.3360137939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.11187744140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.72312927246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.69326782226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.52587890625, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.75464630126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.20022583007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.94567108154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.85230255126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.53945922851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.73461151123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.02679443359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.1136474609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.60557556152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.50972747802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.44669342041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.94297790527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.8515396118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.10369110107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.20581817626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.4048080444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.85783386230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.38323211669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.237060546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.71920013427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.0685806274414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.18399810791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.6266860961914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.28633880615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.568519592285156, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.27497100830078, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.16618728637695, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.9800910949707, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.913475036621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.88483810424805, \"water_flow\": 4796.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.08653259277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.15366744995117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.36848068237305, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.5563850402832, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.17661666870117, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.32984924316406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.58692169189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.31268310546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.49201965332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.92967987060547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.75927734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.7049560546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.23904418945312, \"water_flow\": 158.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.5805435180664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.01544952392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.42841339111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.39057159423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.07698059082031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.42214965820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.35018920898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.31001281738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.05731201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.70997619628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.96073913574219, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.11783599853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.32279968261719, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.36247253417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.91622161865234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.9879379272461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.07636260986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.75761413574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.22107696533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.84651184082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.64846801757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.31977081298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.0668716430664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.10486602783203, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.79012298583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.25460815429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.01518249511719, \"water_flow\": 93.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.55150604248047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.29428100585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.27923583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.6322250366211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.11027526855469, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.2175521850586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.38604736328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.34912109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.11861419677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.89276123046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.47176361083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0014877319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.45032501220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.4325942993164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.72454071044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.19338989257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.84140014648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.67864227294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.7152328491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3046646118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.09918212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.9210433959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.31642150878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.69691467285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.92813873291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.48543548583984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.19025421142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.32112121582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.18387603759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.45917510986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.88045501708984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.24674987792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.03002166748047, \"water_flow\": 507.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.0738525390625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.9964828491211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.92603302001953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.61746978759766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.2252426147461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.03364562988281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.64282989501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.69410705566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.60215759277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.03002166748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.17808532714844, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.4352798461914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.94526672363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.45921325683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.67037963867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.48110961914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8342056274414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.23390197753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.81654357910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.32769775390625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.79493713378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.80947875976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.91291046142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.915283203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.01646423339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.65811920166016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.28143310546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.39900970458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.54995727539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.77685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.57414245605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.78475952148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.84385681152344, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.90457916259766, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.56761932373047, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.80908966064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.17407989501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.36614227294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.65958404541016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.01068878173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.71730041503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.82630157470703, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.94036865234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.76116943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.24554443359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.11935424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6121063232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.7122573852539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.54478454589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.12808990478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.49638366699219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.96923065185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.62302780151367, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.63776397705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.23453140258789, \"water_flow\": 22794.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.99989700317383, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.14521026611328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.895877838134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.5950927734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.43269348144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.2457046508789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.1447982788086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.07120513916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.89429473876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.630859375, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.99048614501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8060302734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.68161010742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9134521484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.10589599609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7642059326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.16229248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.15345764160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.5918426513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.106201171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1848602294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.59266662597656, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6707305908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.27711486816406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.60887145996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.59674072265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.36123657226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 168.30352783203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.9392852783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.5870361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.17230224609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.26109313964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.76370239257812, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.78843688964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.22947692871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1378631591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.11976623535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.01273345947266, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.87684631347656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.72090911865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.59097290039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.24525451660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.07780456542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.024169921875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.40876770019531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.09224700927734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.83411407470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.20518493652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.02912139892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.1577377319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.97518920898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.77172088623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.56166076660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.26579284667969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.35993957519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.23165130615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.68712615966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.25501251220703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.44873809814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.23070526123047, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.35567474365234, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.53800201416016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.12359619140625, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.08467483520508, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.62920379638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.801124572753906, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.88823318481445, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.858062744140625, \"water_flow\": 4785.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.87500762939453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.09869384765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.616111755371094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.06719970703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.36754608154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.8175163269043, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.08377838134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.1228256225586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.0401382446289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.77286529541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.20867156982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.96932983398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.08081817626953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.17530059814453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.39613342285156, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.98999786376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.26104736328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.36282348632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.47320556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.32749938964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1781005859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.21700286865234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.91883087158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.80216979980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.23529052734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.9051742553711, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.39566802978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.21956634521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.2209243774414, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.9632568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.19821166992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.47884368896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.83893585205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.72344207763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.38766479492188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.18597412109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.26457977294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.8672866821289, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.87957000732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.1329345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.0726089477539, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.24846649169922, \"water_flow\": 85.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.20948791503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.7347183227539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.61663818359375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.66045379638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.02924346923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.22956848144531, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.24041748046875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.57282257080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.2620849609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.9696044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.66658782958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.37507629394531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.77384185791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.36038970947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.75843048095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.04610443115234, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.981689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.84229278564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.62680053710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.03360748291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.51637268066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.31758117675781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.61121368408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.3466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.3295669555664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.1390380859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.31456756591797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.13224792480469, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.05916595458984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.47071838378906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.0309829711914, \"water_flow\": 492.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.33670806884766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.50132751464844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.18197631835938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.11800384521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.41605377197266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.770263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.22528076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.99187469482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.83125305175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.12347412109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.722900390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.43802642822266, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.20362091064453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.23727416992188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.28826141357422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.02418518066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.40406036376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.38224029541016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.62385559082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.41870880126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.18998718261719, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.80409240722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.49955749511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.40621948242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.44091033935547, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.51336669921875, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.57518768310547, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16658782958984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.7997817993164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.00714874267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.22489166259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.19215393066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.58727264404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8133316040039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.93518829345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.60738372802734, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.40975952148438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.30062103271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.74617004394531, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.87116241455078, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.18778228759766, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.83332824707031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.10899353027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.48065185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2218475341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.32186889648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.16766357421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.48779296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.98211669921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.96070098876953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.25779724121094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.1630859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.83588790893555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.11231994628906, \"water_flow\": 22787.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.08220672607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.19493103027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.0311393737793, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.58981323242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.51777648925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.57350158691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.37702941894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.74749755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.65927124023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.49234008789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.43597412109375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.65494537353516, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.97586822509766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.65301513671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.35113525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.30889892578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.02847290039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.43618774414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.41604614257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.17098999023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.98129272460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.87901306152344, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.03933715820312, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.61758422851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.7896728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.0791473388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.3302764892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.04742431640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 170.18890380859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.1631317138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.9592742919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.1520233154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.87010192871094, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.98472595214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.28134155273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.30264282226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.16781616210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0806884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.73385620117188, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.99247741699219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.3175277709961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.52832794189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.07264709472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.0672836303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.32949829101562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.23330688476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.74075317382812, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.28617095947266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.89576721191406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.43821716308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2353515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5329360961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.30912780761719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.96018981933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.61663818359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.14611053466797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.64249420166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1340560913086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.58855438232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.01322937011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.87079620361328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.21354675292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.03375244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.33307647705078, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.63737487792969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.8082389831543, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.725616455078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.30643844604492, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.86436080932617, \"water_flow\": 103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.66654586791992, \"water_flow\": 4675.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.765316009521484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.0830078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.44042205810547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.51387023925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.411190032958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.36522674560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.97651672363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.61018371582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.07322692871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.22225952148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.71302795410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.82646179199219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.01087951660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.84569549560547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.9150161743164, \"water_flow\": 138.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.10214233398438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.50203704833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.13304138183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.40583801269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.32186889648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.51251983642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.76878356933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.31488800048828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.71964263916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.71720886230469, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.23008728027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.77021026611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.59004211425781, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.30982971191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9688491821289, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.74958038330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.26416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.04813385009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.84149932861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.37194061279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.10538482666016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.88066101074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.18267059326172, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.17731475830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.12055206298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.30156707763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.25318145751953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.9454574584961, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.51982879638672, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.56814575195312, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.32949829101562, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.91744995117188, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.34034729003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.3177719116211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.29654693603516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.59785461425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.1240463256836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.40042114257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.32827758789062, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.02130126953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.87678527832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.5089111328125, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.57514190673828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.98206329345703, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.15132141113281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.87337493896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.387939453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.55033874511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.26628112792969, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.85900115966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.12364196777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2339859008789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.08352661132812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.125732421875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.71002960205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.6540298461914, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.04650115966797, \"water_flow\": 476.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.03453063964844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.08080291748047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.69873046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.31588745117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.16302490234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.51892852783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.15399932861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.02644348144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.98040008544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.96626281738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.69795989990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.952880859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.94900512695312, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.82906341552734, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.50655364990234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.20194244384766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.20578002929688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.37226867675781, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.33544158935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.33370971679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.47736358642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.87811279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.50369262695312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.45903778076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.59502410888672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.1832504272461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.82025909423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.0772705078125, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.7092514038086, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.90989685058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.02557373046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.85171508789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.6410903930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.03309631347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.89616394042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.4797592163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.61942291259766, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.19255828857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.2805404663086, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.28254699707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.2885513305664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.92861938476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.43057250976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.00718688964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0323486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.07827758789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.34339904785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.79547882080078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.12712097167969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.17784881591797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.79862213134766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.08677673339844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.03131866455078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.280975341796875, \"water_flow\": 22781.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.83346176147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.06501007080078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.65913009643555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.78089904785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.56550598144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.86309051513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.02196502685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.89029693603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.14916229248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1245880126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.97271728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.9068603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.66751098632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.15560913085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.9646759033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.3889923095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.38233947753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.88047790527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.5703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.5559539794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.13563537597656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.86642456054688, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.31124877929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.25689697265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.93775939941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.97897338867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.566162109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.190185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.65538024902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.74298095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.88267517089844, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.20883178710938, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.44943237304688, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.97280883789062, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.85028076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9598388671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.36415100097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.32034301757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.65740966796875, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.7404022216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.65792846679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.3971176147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.47198486328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.13064575195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.37577819824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.61322021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.9952392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.91348266601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.24346160888672, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.48785400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.14161682128906, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.70571899414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.84315490722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.47917938232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.656005859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.08097076416016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.46525573730469, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.14387512207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.52389526367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.32478332519531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.06080627441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.88920593261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.678955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.10198974609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.7804946899414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.44971466064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.763492584228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.450218200683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.65948486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.0219841003418, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.7735481262207, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.946571350097656, \"water_flow\": 4674.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.03704071044922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.27672576904297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.34244918823242, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.9727783203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.31538391113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.56210327148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.8411865234375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.52989959716797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.49988555908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.65811157226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.63610076904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.53775787353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.92764282226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.82121276855469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.85507202148438, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.99639129638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.371826171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.01822662353516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.38257598876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.78343963623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.46471405029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.21089172363281, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.48701477050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.30765533447266, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.66758728027344, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.89270782470703, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.09872436523438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.728271484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.88384246826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.57649993896484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.84912872314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.67061614990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.73108673095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.73003387451172, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.94975280761719, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.43236541748047, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.47029113769531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.01091766357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.85956573486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.40211486816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.16328430175781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.7275161743164, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.74420166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.38232421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.4571304321289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.67237854003906, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.3795166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.25434875488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.47181701660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.52519989013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.04655456542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.05271911621094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.12974548339844, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.48908233642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.06257629394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.52825164794922, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.788818359375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.69273376464844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.80303192138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.71337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.84148406982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.48219299316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.24457550048828, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.33061218261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.30235290527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.23431396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.52045440673828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.96871948242188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.55967712402344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.36766815185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.0300064086914, \"water_flow\": 459.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.12968444824219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.61225891113281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.18601989746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.83680725097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.58614349365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.55562591552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.21392059326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.7182846069336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.44416046142578, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.77619934082031, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.15391540527344, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.53243255615234, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.18754577636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.2370376586914, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.03202819824219, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.19343566894531, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.17694854736328, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.54505920410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.0679702758789, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.80000305175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.39336395263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.64503479003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.38141632080078, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.49040985107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.43727111816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.51677703857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.98454284667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.19383239746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.47972869873047, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.96495819091797, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.38723754882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.11084747314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.69890594482422, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.52838897705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.09497833251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.75936126708984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.9889144897461, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.53219604492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.60941314697266, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.94503784179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.49104309082031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.59614562988281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.65621948242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.5843505859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9095916748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.20245361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.31822204589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.30953216552734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.55976104736328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.43888092041016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.89022064208984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.788124084472656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.97800827026367, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09652328491211, \"water_flow\": 22767.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.046939849853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.38233184814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.74559020996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.57909393310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.72806549072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.46151733398438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.03507995605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.01067352294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1774673461914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.60794067382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.35064697265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.16156005859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.16984558105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.33897399902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.07960510253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.1293487548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.5518798828125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.54229736328125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.00534057617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.79379272460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.8770751953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.91156005859375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.00430297851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.37875366210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.7098388671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.38731384277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.6434326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.06002807617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.25169372558594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.79949951171875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.6931915283203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.2797393798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.54107666015625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.577392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.04421997070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.60714721679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.4134521484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.8206329345703, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.23829650878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2429656982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9539794921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.84968566894531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.89202117919922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8949737548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.9647445678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.488525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.12063598632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.2851791381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.61511993408203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.61195373535156, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.31657409667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.16624450683594, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.54334259033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.68048095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.589599609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.972900390625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.22309112548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.39141082763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.81339263916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.40214538574219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.34648132324219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.12998962402344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.76271057128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.17155456542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.93097686767578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.13484191894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.701045989990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.7201042175293, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.41411590576172, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.14570236206055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.01787567138672, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.045799255371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.024322509765625, \"water_flow\": 4673.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.31380844116211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.66839599609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.19663619995117, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.93375396728516, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.57572937011719, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.85218048095703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.14252471923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.39852905273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.53817749023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.60009002685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.60893249511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.4508285522461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.11058044433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.23455047607422, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.06297302246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.2054672241211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89944458007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.76091003417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4048843383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6421890258789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.2675552368164, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.77661895751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.1505355834961, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.02925109863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.21724700927734, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.53504943847656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.71949005126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.13145446777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.43040466308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.6927490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.38273620605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.38108825683594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8528060913086, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.10758209228516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.7489013671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.42784881591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.60257720947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.80884552001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.57997131347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.99248504638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.84645080566406, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7870101928711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.34783935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.15013885498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.15019989013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.57852172851562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.84477233886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.91285705566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.86953735351562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.49810028076172, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1479263305664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.37060546875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.28520202636719, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.12568664550781, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.02494812011719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.37174224853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.77075958251953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.5849380493164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.56698608398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.66574096679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.21228790283203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.27488708496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7950668334961, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.38536834716797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.47575378417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.74576568603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.6634521484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.79480743408203, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.14669036865234, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 448.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.03024291992188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.23920440673828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.79681396484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.68833923339844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.85662841796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.59634399414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.67965698242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.52928161621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.1660385131836, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.9762191772461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.36734008789062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.52716827392578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.3092269897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.70268249511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.9067153930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.69705200195312, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.94351959228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.35822296142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.39447021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.75202941894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.39157104492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.99658966064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.623046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.7174072265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.81436157226562, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.59449768066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.73174285888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.14157104492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.68141174316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.5879135131836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.2457275390625, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.10877227783203, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.01805114746094, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.51244354248047, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.4757080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.0769271850586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.05303192138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.59223937988281, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.32786560058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.26551055908203, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.88288116455078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.1421127319336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.42431640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.26152038574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.19203186035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.82752990722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.0781021118164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.91535949707031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.18494415283203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.00634002685547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.48778533935547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.1433219909668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.79430389404297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.33460235595703, \"water_flow\": 22762.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.63694763183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.715213775634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.70018768310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.313232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.88665771484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.832908630371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.83047103881836, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.97534942626953, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.27130889892578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.3059310913086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.647216796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7163543701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.37821960449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.515625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.56448364257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7203826904297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.3650665283203, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.84408569335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.2723846435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.10821533203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.8662567138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.7110137939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.98886108398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.13336181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.00807189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.93869018554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.2234649658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.53175354003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.41363525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.60223388671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.27774047851562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.34912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.38763427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.72073364257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.54725646972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.28982543945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.85159301757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4091033935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.24468994140625, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6783447265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.50723266601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.63624572753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.31593322753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.60569763183594, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.71839904785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.29241943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.25004577636719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.41302490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.8656997680664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1480484008789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.50790405273438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.5384521484375, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.30247497558594, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.7765121459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.70664978027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.03953552246094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.62230682373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.41783905029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.4581069946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.03558349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.2453384399414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.40010070800781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.85157775878906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.32084655761719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.67200469970703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.46340942382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.70283508300781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.98371124267578, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.04169845581055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.85520553588867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.34233856201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.182334899902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.16502380371094, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.144256591796875, \"water_flow\": 4638.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.184608459472656, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.44404983520508, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.56371307373047, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.63861083984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.58808898925781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.66438293457031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.75163269042969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.6296615600586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.38775634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.46466827392578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.91983032226562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.42709350585938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.6165771484375, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.06849670410156, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.83612823486328, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.80254364013672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.59371948242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.91947174072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.5009765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.16426086425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.5038833618164, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.78135681152344, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.77251434326172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.45772552490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.646240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.93578338623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.03241729736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.06884765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.64111328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.71928405761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7528305053711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.16609954833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.62973022460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.65904235839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.05442810058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.74566650390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.27853393554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03963470458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.92646026611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.81605529785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.23534393310547, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.51634216308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47217559814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.39512634277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.88833618164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.13990020751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.5286865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.69828033447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.86286163330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.8723373413086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00676727294922, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.66098022460938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.19112396240234, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.57996368408203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.4909896850586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.99555969238281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.37232971191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.28009796142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.55687713623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.83444213867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.4573974609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.19733428955078, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9869155883789, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.90093994140625, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.76652526855469, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.39717864990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.66402435302734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.96279907226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.08809661865234, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02999877929688, \"water_flow\": 318.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.04351806640625, \"water_flow\": 119.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.06029510498047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.18385314941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.44389343261719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.12867736816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.57308959960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.39319610595703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.14643096923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.29238891601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.59590148925781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.4570083618164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.52842712402344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.85894012451172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.17375183105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.90209197998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.45946502685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.35420989990234, \"water_flow\": 92.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.32360076904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.45143127441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.5654067993164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.3012924194336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.03414916992188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1750717163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.52835083007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.40664672851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.84722137451172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.11875915527344, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.31399536132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.23418426513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.21559143066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.11683654785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.8364486694336, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.41857147216797, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.43477630615234, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.21843719482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.00846099853516, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.34088897705078, \"water_flow\": 102.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.39877319335938, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.15619659423828, \"water_flow\": 125.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.5165786743164, \"water_flow\": 129.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.7768325805664, \"water_flow\": 160.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.74232482910156, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.9610824584961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.5561752319336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.02301025390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.8626480102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.93746185302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.42485809326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.02571868896484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.03462982177734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.82318878173828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.36642456054688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.631343841552734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.6324462890625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.7622184753418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.02694320678711, \"water_flow\": 22749.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.5927848815918, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.45656204223633, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.36587524414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.70111846923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.49677276611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.67023849487305, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.77349853515625, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.93912506103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.35717010498047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.03104400634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.42655181884766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.06806182861328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.23805236816406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.04116821289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8922882080078, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.07769775390625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.2657012939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.6136932373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.9170684814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.63038635253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.06817626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.03097534179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.56373596191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.6664276123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.66065979003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.76158142089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.66148376464844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.0072784423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.02532958984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.24073791503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.52865600585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 169.487060546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.21817016601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.35716247558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.35142517089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.33338928222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.22084045410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.41683959960938, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.35968017578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.474609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.13088989257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.24974060058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.55020141601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.53437042236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.30220794677734, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.31584167480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.94058227539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.039794921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.7749252319336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.27112579345703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.32284545898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.42621612548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.34974670410156, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.11534118652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.0676040649414, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.72962188720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.82874298095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.57455444335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.90936279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.07492065429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.89773559570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.11445617675781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.17632293701172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.25213623046875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.04872131347656, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.27440643310547, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.653465270996094, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.03022766113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.05278015136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.68838119506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.39231491088867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.28865051269531, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2020378112793, \"water_flow\": 4579.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.311134338378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.29498291015625, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.24661636352539, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.71479797363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.64334869384766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.253173828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.72212982177734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.20806121826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.37132263183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.44673156738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.91419219970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.8121109008789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.85556030273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.62261962890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.92350006103516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.87977600097656, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.5340576171875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.25709533691406, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.3461685180664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.79500579833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.57183837890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.69061279296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.35555267333984, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.27141571044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.7820816040039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.6742935180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.27865600585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.3935775756836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.96503448486328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.96967315673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.22196197509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.24951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.45990753173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.7447738647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.92264556884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.81913757324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.060791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.22499084472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.559326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.52477264404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.11923217773438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.58004760742188, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.71366119384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.42132568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.50807189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.1661148071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.35188293457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.0500717163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.13277435302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.71235656738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1185302734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.45414733886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.28616333007812, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.81654357910156, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.22267150878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.02506256103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.50203704833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.64691162109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.46310424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.1640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.15461730957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.91886901855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.27855682373047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.07257843017578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.98753356933594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.83941650390625, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.12432861328125, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.66381072998047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.13831329345703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.07920837402344, \"water_flow\": 314.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.12501525878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.12149047851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.66899108886719, \"water_flow\": 118.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.11162567138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.88787078857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.92005920410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.7136001586914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.84735870361328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2881088256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.6718521118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.81971740722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.71249389648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.06973266601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.09388732910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.40296936035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.69707489013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.47953033447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.3533935546875, \"water_flow\": 95.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.33265686035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.87285614013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.02967071533203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.67001342773438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.88813018798828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.37413787841797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.12211608886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.09828186035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.39073944091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.98614501953125, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.01105499267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.7234115600586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.63280487060547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.10221862792969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.85604095458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.86759185791016, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.27689361572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.49828338623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.85906982421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.00601959228516, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.81854248046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.38983154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.86742401123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.2758560180664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.95956420898438, \"water_flow\": 200.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.30628204345703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.97344207763672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.4186019897461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.39521026611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.57362365722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.32164764404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2897720336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.13916778564453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.90516662597656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.88365173339844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.17182159423828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.28907775878906, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.2791633605957, \"water_flow\": 22663.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.02045822143555, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.26603698730469, \"water_flow\": 80.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.417938232421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.909568786621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.42910385131836, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.421390533447266, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.1479377746582, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.60404205322266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.96410369873047, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.82893371582031, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.2656021118164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.35961151123047, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.49835205078125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.72063446044922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.2117919921875, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.45242309570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.8304901123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.17601013183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.92666625976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.8886260986328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.95199584960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.42791748046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.1634063720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.58116149902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.49436950683594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.49041748046875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.0550537109375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.57394409179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.21026611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.55026245117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.86183166503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 170.1595458984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 171.5730438232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.6175537109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.16354370117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.02491760253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.109375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5409393310547, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.83453369140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.68032836914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.84780883789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.29075622558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2109832763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.37773895263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.56059265136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.6214828491211, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.80485534667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.52547454833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.3814468383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.47161102294922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.92985534667969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.93386840820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.69911193847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.27649688720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.9976806640625, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.9596939086914, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.87419128417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.22891235351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.64350891113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.08264923095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.38804626464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.64134979248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.66895294189453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.47433471679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.81251525878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.91338348388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.3574447631836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.867218017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.49250411987305, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.247501373291016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.42416000366211, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.314117431640625, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.292442321777344, \"water_flow\": 4576.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.37391662597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.351715087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.31990051269531, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.87416458129883, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.10954284667969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.23746490478516, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.99817657470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.78239440917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.69935607910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.25102996826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.17476654052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.56449890136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.38958740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4476318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.32066345214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.48796081542969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.58219909667969, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.07188415527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.87944793701172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.65215301513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.90576171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.35162353515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.07560729980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.7887954711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.97901153564453, \"water_flow\": 80.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.28433227539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.58564758300781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.98231506347656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.32632446289062, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.70015716552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.38711547851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7151107788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.18045806884766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.76800537109375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.84136962890625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.76492309570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.38898468017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.70046997070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.46746063232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.12801361083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.83206176757812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.99787902832031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.6881332397461, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.1368179321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.88217163085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.29226684570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.53865051269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.27032470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.08812713623047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.4104232788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9934310913086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.25091552734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.54862213134766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.34947204589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.4061050415039, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.92013549804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.71704864501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.7433090209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.34820556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.98825073242188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.26642608642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.10285186767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.21561431884766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.83021545410156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.24092864990234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.22840118408203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.06305694580078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.27899169921875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.82814025878906, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.99779510498047, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.27926635742188, \"water_flow\": 243.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.37055969238281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.71653747558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.08296203613281, \"water_flow\": 107.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.1861801147461, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.77251434326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.67677307128906, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.40974426269531, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.6109390258789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.53433990478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.15564727783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.71707153320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.77787017822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.78878784179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.19310760498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.01873779296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.54071807861328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.2567367553711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.14771270751953, \"water_flow\": 99.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.55421447753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.37671661376953, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.92131042480469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.32687377929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.97144317626953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.3118667602539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.88488006591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.00809478759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.04715728759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.99813079833984, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.2191162109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.7603759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.2153091430664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.58172607421875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.15348052978516, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.8323745727539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.37171936035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.56756591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.26399993896484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.24170684814453, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0328140258789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.42727661132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.94708251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.01512145996094, \"water_flow\": 207.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.54083251953125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.98393249511719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.78816986083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.67062377929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.80152130126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.44158172607422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.23375701904297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.08872985839844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.630123138427734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.25101089477539, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.14216995239258, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.102108001708984, \"water_flow\": 22582.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.067020416259766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.044586181640625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.188865661621094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.41693878173828, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.69911193847656, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.89630126953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.7087631225586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.56135559082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.46009063720703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.64893341064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.51081085205078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.06542205810547, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.72628021240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.91522216796875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.92305755615234, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.44134521484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8413543701172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.52169799804688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5906219482422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.7770233154297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.04910278320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.06480407714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.55247497558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.02993774414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.08197021484375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.1851043701172, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.96568298339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.25669860839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.01129150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.8839874267578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.0867156982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.9805145263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.99342346191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.50064086914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.85382080078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.62771606445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.49742126464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.74002075195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.208740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9214630126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.83595275878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.12123107910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.57644653320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4996337890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.21429443359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.30594635009766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.7519302368164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.37480926513672, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.569091796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.67657470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.20618438720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.73624420166016, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.09336853027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.95973205566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.22679901123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.97766876220703, \"water_flow\": 80.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.63536834716797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.79656219482422, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.72010803222656, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.39054870605469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.42732238769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.5417251586914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6726303100586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.18702697753906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.95162963867188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.90006256103516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.06848907470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.614356994628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.5621337890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.45612335205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.61032485961914, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.49530029296875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.43436050415039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.359954833984375, \"water_flow\": 4571.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.492584228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.45855712890625, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.620079040527344, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.34905242919922, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.310237884521484, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.93932342529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.46418762207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.72218322753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.24514770507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36808776855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.73615264892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.68082427978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.15599060058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.75989532470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.08953857421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.83203887939453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.58797454833984, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.35489654541016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.12020874023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.99574279785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.13909912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.9289321899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.65966033935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.10771942138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.11737823486328, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.32655334472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.91028594970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.48661041259766, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.65425872802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.3371810913086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.39940643310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.75090026855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.64200592041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.0699462890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.92941284179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.4844970703125, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.0867691040039, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.57681274414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.82452392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.17888641357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.25282287597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.55844116210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.0640640258789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.58919525146484, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.42005157470703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.54723358154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.08184051513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.11223602294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.24703979492188, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9875717163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.44043731689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.23942565917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.61602020263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.16213989257812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.7644271850586, \"water_flow\": 93.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.57341003417969, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.84243774414062, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.43087005615234, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.63923645019531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.4017333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.70326232910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.674072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.28778076171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.57405090332031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.92728424072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.54664611816406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.8519515991211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.20075988769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.9665756225586, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.19212341308594, \"water_flow\": 239.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.61537170410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.61942291259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.05294036865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.16521453857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.91690063476562, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.11260223388672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.41902923583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.069091796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.3028793334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.1080551147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.2921371459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.51090240478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.44829559326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.89850616455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.26227569580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.97682189941406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.82281494140625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.45929718017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.1109619140625, \"water_flow\": 103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.75106811523438, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.82396697998047, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.40010833740234, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.74189758300781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.72076416015625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.35472106933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.33934783935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.86563110351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.3693618774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.63115692138672, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.58505249023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.23839569091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.66390991210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.49054718017578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2786636352539, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.64605712890625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.85472869873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.27613830566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.96931457519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.86743927001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.805908203125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.4464340209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.82254791259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.73889923095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.49929809570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.86904907226562, \"water_flow\": 217.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.5282974243164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.88876342773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.309326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.83333587646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.52932739257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.52185821533203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.14704895019531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.147926330566406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.18355941772461, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22572.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08958053588867, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.182376861572266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.41631317138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.54383850097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.2608871459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.96025848388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.17859649658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.0899429321289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.10768127441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.58740997314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.90562438964844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.04773712158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.49160766601562, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.72502136230469, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8485870361328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.29171752929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.29568481445312, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.16949462890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.5968780517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.91285705566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.0560302734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.8849639892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.474365234375, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.81781005859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.45382690429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.01089477539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.91091918945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.4553680419922, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.6068572998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.9989013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.5479278564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.31365966796875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.65090942382812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.04348754882812, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.84637451171875, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.75038146972656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0793914794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.66592407226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.103271484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.87060546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.5050811767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.66413116455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.98401641845703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.44937133789062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.90167999267578, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.99382781982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.58036804199219, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.89165496826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.86900329589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.2054443359375, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.44595336914062, \"water_flow\": 117.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.0067367553711, \"water_flow\": 108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.64283752441406, \"water_flow\": 85.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.26828002929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.44770050048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.42315673828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.75753784179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.34722900390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.31938171386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.70820617675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.27774810791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.41630554199219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.36637115478516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.56664276123047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.81351852416992, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.88240432739258, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.471981048583984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.13444900512695, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.7508544921875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.56819534301758, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.539833068847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.388309478759766, \"water_flow\": 4561.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.49785232543945, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.6805534362793, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.65043258666992, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.63292694091797, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.40961456298828, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.4353256225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.07655334472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.07463073730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.15133666992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.14579772949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.8453369140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.89637756347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.88746643066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.82914733886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.39688110351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.60824584960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.1567153930664, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.17037963867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.95784759521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.23773193359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.6529769897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.85901641845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.20018768310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.1483154296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.08203887939453, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.23208618164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7117919921875, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.54285430908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.63541412353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.37520599365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.92530822753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.28038787841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.32977294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.03956604003906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.9895248413086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.72547912597656, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.36637878417969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.5236587524414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.88076782226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.44357299804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6812973022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.55162048339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.42399597167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.19986724853516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.4478759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.11915588378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.57643127441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.910888671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.56232452392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.78902435302734, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.2944107055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4701156616211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.07377624511719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.0250244140625, \"water_flow\": 174.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.96863555908203, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.18663787841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.34124755859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.44342803955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.44632720947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.73779296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.08357238769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.64839172363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.34664916992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.08091735839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.94087219238281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.50869750976562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.54202270507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.01638793945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.27741241455078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.67101287841797, \"water_flow\": 232.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1075668334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.42626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.66752624511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.16302490234375, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.24872589111328, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.3369369506836, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.03904724121094, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.1707763671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.11917877197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.93830871582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.36155700683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.04658508300781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4439468383789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.28605651855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.59957122802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.05734252929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.2333755493164, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.70919036865234, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.00022888183594, \"water_flow\": 138.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.87823486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.6719970703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.4547348022461, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.10291290283203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.46463775634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.64384460449219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.50804138183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.86131286621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.47817993164062, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.54624938964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.6987075805664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.68125915527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.73811340332031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.18728637695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.86666870117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.92164611816406, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.43497467041016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.15597534179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.00128936767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.9535903930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.60200500488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.3924331665039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.44125366210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.69343566894531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.42086791992188, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.23613739013672, \"water_flow\": 231.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.82274627685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.3321533203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.79105377197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.15592956542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.94817352294922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.596031188964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.98762130737305, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0500602722168, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22234.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 320.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050418853759766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09281921386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.55828094482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.75129699707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.57051086425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.7791748046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.25767517089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.48236846923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.0049057006836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.23448944091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.71269226074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.70072174072266, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.55986022949219, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.84493255615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1276092529297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.43299865722656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.9714813232422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.80477905273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.22171020507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.08714294433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.3192138671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6952667236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.84475708007812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.8760223388672, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.1630401611328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.35255432128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.17697143554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.1279754638672, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.68038940429688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.58583068847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.29129028320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.32008361816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.8550567626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.09568786621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7633514404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.27427673339844, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.90162658691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.42129516601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8426513671875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4533233642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.583251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.3311996459961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.67247009277344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.59251403808594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.60011291503906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.21985626220703, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.30850219726562, \"water_flow\": 180.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.50183868408203, \"water_flow\": 161.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.78458404541016, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.05126190185547, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.81925201416016, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.31201171875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.57902526855469, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.65608978271484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.48443603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.73097229003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.64199829101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.45716857910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.85623168945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.22273254394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.61182403564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.92265319824219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.84989929199219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.272647857666016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.75099182128906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.35837173461914, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.08715057373047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.59127426147461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.88447570800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.80033874511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.76303482055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.623863220214844, \"water_flow\": 4554.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.639705657958984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.02400207519531, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.539215087890625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.977867126464844, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.0924072265625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.398433685302734, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.41807556152344, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.37152862548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.32035064697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.6507568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.92488098144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.80857849121094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.62090301513672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.51924133300781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.08705139160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.80951690673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.34209442138672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.73971557617188, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.8436508178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.71222686767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.57778930664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.72525787353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.6045913696289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.98260498046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.36036682128906, \"water_flow\": 93.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.6714096069336, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.16320037841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.92448425292969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.10804748535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.05010223388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.22296905517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.68148040771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.22203063964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.27545166015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.39974212646484, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.90228271484375, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.90064239501953, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4663314819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.91555786132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.69160461425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.89925384521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.635498046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.59851837158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.55280303955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.61325073242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.01937866210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.04116821289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.35993957519531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.15562438964844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.3018569946289, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.15853118896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.46730041503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.46199035644531, \"water_flow\": 183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.63367462158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.82942962646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.77552032470703, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.03253173828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.00594329833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.90983581542969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.73490142822266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.74554443359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.76306915283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0171661376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.970947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.93891906738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.09358215332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.31107330322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.23212432861328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.43644714355469, \"water_flow\": 228.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.07304382324219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.74769592285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.86067962646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.40798950195312, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.9672622680664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.17667388916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.49736785888672, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.21782684326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.78142547607422, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.39464569091797, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.1761474609375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.32870483398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.82135772705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.31946563720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.13900756835938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.38552856445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.54960632324219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.97249603271484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.88063049316406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.59931945800781, \"water_flow\": 147.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.69803619384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.23848724365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.88935852050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.25326538085938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.61029052734375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.35956573486328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.51750183105469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.74124908447266, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.82672882080078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.6697006225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.52464294433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.93756103515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.64865112304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.69378662109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.29778289794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.7569808959961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.642578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.91741180419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.62550354003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.28256225585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.89722442626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.50753021240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.30377197265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.75919342041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.84689331054688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.8160171508789, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.51300048828125, \"water_flow\": 235.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.92335510253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.96682739257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.02277374267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.30928039550781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.41445541381836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22180.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 319.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.61423873901367, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.43445587158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.38890075683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.77204895019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.76053619384766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.6622085571289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.92652893066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7936782836914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.63726806640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.57946014404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.60680389404297, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.75279998779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.56060791015625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.19503021240234, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.56515502929688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.66612243652344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1487274169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2682342529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.32373046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9584503173828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.1075897216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8669891357422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.16903686523438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.95755004882812, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.96517944335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.338623046875, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.5167236328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.0830535888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.92330932617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.49574279785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.83383178710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.15264892578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.65122985839844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.08346557617188, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5068359375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.54541015625, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.14566040039062, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.14279174804688, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.87002563476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.48738098144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.01555633544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.85932159423828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.3253402709961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.97576904296875, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.11424255371094, \"water_flow\": 183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.70992279052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.52201080322266, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.64520263671875, \"water_flow\": 141.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.87336730957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.84732055664062, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.08959197998047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.14717102050781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.3619384765625, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.99917602539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.76124572753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.79286193847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.1678466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.4207992553711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.48584747314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.51679229736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.9047622680664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.68509292602539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.46153259277344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.515682220458984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.35505676269531, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.076560974121094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.17692184448242, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.8682746887207, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.79051971435547, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.75922393798828, \"water_flow\": 4535.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.69154739379883, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.790252685546875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.12627410888672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.75025939941406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.72472381591797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.778011322021484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.82322692871094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.37152862548828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.56354522705078, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.18175506591797, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.07859802246094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.25037384033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.60601043701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.29405975341797, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.0374755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.20452880859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.06936645507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.70275115966797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.73485565185547, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2547378540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.02034759521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.03913116455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.55796813964844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.20795440673828, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.86830139160156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.36392974853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.93208312988281, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.81021881103516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.41400909423828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.79370880126953, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.12022399902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.42796325683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.42110443115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.67132568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.00005340576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.86631774902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.55015563964844, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.86829376220703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1624755859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.96298217773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.60519409179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.55069732666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.52202606201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.2300033569336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.79310607910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.7921142578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.11964416503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.5622329711914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.78633880615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.02517700195312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.64961242675781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.92513275146484, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.87145233154297, \"water_flow\": 190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.11283111572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.65017700195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.66624450683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.29534912109375, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.76727294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.44883728027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.15576934814453, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.73633575439453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.00544738769531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.27403259277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.96322631835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.8886947631836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.01976013183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.30905151367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.14733123779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.19230651855469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.48023986816406, \"water_flow\": 224.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.82073211669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.09947967529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.57969665527344, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.87094116210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.72672271728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.67510986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02632141113281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.83409881591797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.83123779296875, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.84735870361328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.57617950439453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.68840789794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.08158111572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.52985382080078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.00579071044922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.48222351074219, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.26274108886719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.41218566894531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.95176696777344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.34911346435547, \"water_flow\": 155.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.0548324584961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.68819427490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.081298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.90676879882812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.3367919921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.70860290527344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.08983612060547, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.95606231689453, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.6851806640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.56468200683594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.7425308227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.8676986694336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.45099639892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.4571304321289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.18976593017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.95455169677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4657211303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.25532531738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.67720031738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.90332794189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.76797485351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.28092193603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.13255310058594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.72392272949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.3931884765625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.41472625732422, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.5826644897461, \"water_flow\": 243.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.36741638183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.40300750732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.94242095947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.64756393432617, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.051536560058594, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22153.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 318.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.25149917602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.13755798339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.3523178100586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.22177124023438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.39561462402344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.16852569580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.61116027832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.30569458007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.2736587524414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.474853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.31266784667969, \"water_flow\": 178.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.60259246826172, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.36941528320312, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.72296905517578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3172836303711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.75788116455078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.88592529296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6863555908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.88099670410156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.58802795410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.85379028320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2987060546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.00318908691406, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.68771362304688, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.84149169921875, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.6249542236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.44187927246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.38819885253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.95095825195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.20606994628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.7003936767578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.47872924804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.9313507080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.44821166992188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.63082885742188, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9798583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.36956787109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.53536987304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.94147491455078, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.56517028808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9599838256836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.1449966430664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.81285858154297, \"water_flow\": 241.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.95304107666016, \"water_flow\": 188.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.41429138183594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.89058685302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.79209899902344, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.9398193359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.26097106933594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.19795989990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.1667709350586, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.28318786621094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.0690689086914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.13592529296875, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5946502685547, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6774139404297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.27798461914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.00720977783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.74884796142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.03738403320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.00887680053711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.180885314941406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.89190673828125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.12363052368164, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.27477264404297, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.63932418823242, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.24925231933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.965179443359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.92937469482422, \"water_flow\": 4509.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.94960021972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.010902404785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.84562301635742, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.81590270996094, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.35213088989258, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.286991119384766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.06884765625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.41012573242188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.46012878417969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.43547821044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.54310607910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.80065155029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.20659637451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.46283721923828, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.56649017333984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.6233901977539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.75200653076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.71746826171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.45021057128906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.23983001708984, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.01744079589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.66012573242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.3379898071289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.37108612060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.97189331054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.55562591552734, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.23303985595703, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.1669921875, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.27816009521484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.3487777709961, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.38140869140625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.6211166381836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.97881317138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.58167266845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.47164154052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.79821014404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0345230102539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.68770599365234, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.82261657714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.30636596679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8757095336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.13457489013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.8049087524414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.2508316040039, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.83091735839844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.9182357788086, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.2727279663086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.41034698486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.05362701416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.90135192871094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.06497955322266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.02680969238281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.48056030273438, \"water_flow\": 208.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.05606079101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.39478302001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.55931854248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.96391296386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.78023529052734, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.55852508544922, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.74622344970703, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.46538543701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.4374771118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.5983657836914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.18807983398438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2196807861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.2386245727539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3238754272461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.08577728271484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.27774810791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.14773559570312, \"water_flow\": 221.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.98458862304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1740951538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.14397430419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.37796783447266, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.86394500732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.2437973022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.19786834716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.22731018066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.82379913330078, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.53478240966797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.71652221679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.37165069580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6913833618164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.8706283569336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.04598236083984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.84895324707031, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.55119323730469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.51636505126953, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.75560760498047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.81205749511719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.12433624267578, \"water_flow\": 161.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.5616455078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.90744018554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.20694732666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.15064239501953, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.89299011230469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.98161315917969, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.29845428466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.73135375976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.66326141357422, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.75798034667969, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.28495788574219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.37358856201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.71894073486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.37476348876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.05679321289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.9693832397461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.51683807373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.24349975585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.5650405883789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.37210845947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.05726623535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.90034484863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.14556884765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.49888610839844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.81218719482422, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.10028839111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.00910949707031, \"water_flow\": 260.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.6436767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.47766876220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.463157653808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07013702392578, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22124.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 317.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.77790069580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.35580825805664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.0501708984375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.89783477783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.40444946289062, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.05186462402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.18814086914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7435302734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.3072509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.2663803100586, \"water_flow\": 181.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.36065673828125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.72377014160156, \"water_flow\": 136.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.13908386230469, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.75010681152344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.23188018798828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.03471374511719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.94403839111328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.92916870117188, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.93991088867188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.74440002441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.18356323242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.45286560058594, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.55111694335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.7172088623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5144500732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.01199340820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.47299194335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.63589477539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.27406311035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.55369567871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.6113739013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.3406982421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.26499938964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.88238525390625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.23538208007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.23802185058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.10067749023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8161849975586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.99527740478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.71026611328125, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.50768280029297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.50618743896484, \"water_flow\": 247.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.94522857666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.63819122314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.58265686035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.2502212524414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.2598876953125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.49835968017578, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.2564697265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.76114654541016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.770751953125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.95166778564453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.82337188720703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.80398559570312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.02467346191406, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.299560546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.58038330078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.34489822387695, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.2729263305664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.20831298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.16289520263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.70566940307617, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.77152633666992, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.01352310180664, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.40999221801758, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.28748321533203, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.25245666503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.05052185058594, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.99311447143555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.78558349609375, \"water_flow\": 4469.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.39707565307617, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.59956741333008, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.32148361206055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.387939453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.2095947265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.24894714355469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.42253112792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.73590087890625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.08222198486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.14128112792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.23159790039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.51300811767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.90560150146484, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.42231750488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.67070770263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.87285614013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.94493865966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.65982055664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.01921081542969, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0331802368164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.66020965576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.19808197021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.58077239990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.85797882080078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.92266082763672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.41231536865234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.98771667480469, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.31019592285156, \"water_flow\": 135.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.37848663330078, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.8824234008789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.097900390625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.16200256347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.99993133544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.39775085449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.48129272460938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.03143310546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.62716674804688, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.02706146240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.14653015136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.95602416992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.96348571777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.94231414794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.99577331542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.98506164550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.45707702636719, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.32394409179688, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.71591186523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.28744506835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.5319595336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.41885375976562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.67742919921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.54023742675781, \"water_flow\": 218.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16410827636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2528076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.7076187133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.66446685791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.7302474975586, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.49400329589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.41612243652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.92655181884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.62818908691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.51495361328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.21895599365234, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0252685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.54883575439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.82371520996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.10017395019531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.48889923095703, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.34891510009766, \"water_flow\": 207.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.8771743774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.61264038085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.6676254272461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.67473602294922, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.5298843383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.30050659179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.91765594482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.47602844238281, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.48822021484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.6441421508789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.42953491210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.43132019042969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.97581481933594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.04824829101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.12798309326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.4358139038086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.36312103271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.55067443847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.12394714355469, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.15967559814453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.70023345947266, \"water_flow\": 168.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.69520568847656, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.9261245727539, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.37752532958984, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.57794189453125, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.39065551757812, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.82780456542969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.00318145751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.1628189086914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.72637176513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.34325408935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.7210464477539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.64215087890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.43950653076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.42826843261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.43709564208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.22052764892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.92778778076172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.16560363769531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.32373809814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.87654876708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.44157409667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.13372802734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.00394439697266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.78326416015625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.49443054199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.5275650024414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.57933044433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.5870361328125, \"water_flow\": 261.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.434356689453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.00430679321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22094.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 316.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.19939041137695, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.290016174316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.93138122558594, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.76781463623047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.55315399169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.85528564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.92121124267578, \"water_flow\": 183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.43954467773438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.9316635131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.36383819580078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.318603515625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.20804595947266, \"water_flow\": 111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.2029037475586, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.45894622802734, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.79139709472656, \"water_flow\": 92.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.00885009765625, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.65629577636719, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3916778564453, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1092529296875, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.06529235839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.41575622558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.72071838378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.44801330566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.36248779296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.00296020507812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.4379119873047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.7986602783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.3056640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.83885192871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.99191284179688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.60629272460938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.9884796142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8587646484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.66915130615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.37246704101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.18148803710938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.92317962646484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.34716796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.36550903320312, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.93255615234375, \"water_flow\": 252.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.33622741699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.14447021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.73513793945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.27891540527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.66255950927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.4646224975586, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.88468170166016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.31891632080078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.66151428222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.45860290527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.64682006835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.96116638183594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.87802124023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.95791625976562, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.05039978027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.75981140136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.94704818725586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.02394485473633, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.81491470336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.59638977050781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.97065734863281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.77712631225586, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.44222640991211, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.320838928222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.1514892578125, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.06693649291992, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.84255599975586, \"water_flow\": 4463.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.61627960205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.342281341552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.62477493286133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.41661834716797, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.01254653930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.16957092285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.57319641113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.90716552734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.50300598144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.28670501708984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.81346893310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.50835418701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.32850646972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.2469482421875, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.31332397460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.61550903320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2465591430664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.18071746826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.34322357177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.78645324707031, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.82424926757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.128662109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.79127502441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.41569519042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.57060241699219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.10000610351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.20194244384766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.43644714355469, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.1227798461914, \"water_flow\": 172.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.35950469970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.5693588256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.60784149169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.26309204101562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.50979614257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.96663665771484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11444091796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.81901550292969, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.25196838378906, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.0718002319336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.81282806396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.02590942382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.77638244628906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.06309509277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.30366516113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.94087219238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.06169891357422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.59646606445312, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.98660278320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.15975952148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.4445571899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.42083740234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.9468994140625, \"water_flow\": 227.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.23015594482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.04082489013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.81133270263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.07372283935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.93506622314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.00466918945312, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.88289642333984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.14253997802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.19206237792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.6280517578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.3535385131836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.06047821044922, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1199722290039, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.89275360107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.8045654296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.95234680175781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.53092193603516, \"water_flow\": 204.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.76628875732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.7484130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.66422271728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.13533020019531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.93309020996094, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.6080093383789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.52935028076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.48558807373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.41163635253906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.25663757324219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.42280578613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.45269775390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.29832458496094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.53072357177734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.948974609375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.38375854492188, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.56474304199219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.38727569580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.88768768310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.6410903930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.59989929199219, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.50386047363281, \"water_flow\": 264.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.06448364257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.03555297851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.36103820800781, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.918212890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.84886169433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.41828918457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.61885070800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.44803619384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.1542739868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.44715881347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.8987808227539, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.95425415039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.52513885498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.11811828613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.35840606689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.90740203857422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.8172378540039, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.70630645751953, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.26879119873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.42771911621094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.40364074707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.80651092529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.42860412597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.0599365234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.1585693359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.00430297851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.1326904296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.1199836730957, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.55961608886719, \"water_flow\": 262.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.066322326660156, \"water_flow\": 22062.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 303.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050445556640625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.0964241027832, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.83328628540039, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.53569030761719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.3740234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.44628143310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.16804504394531, \"water_flow\": 192.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.42430877685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.40019989013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.57487487792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.78659057617188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.57600402832031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.08838653564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.99436950683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.08480834960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.31404876708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.56710815429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.57229614257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.04290771484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.19308471679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.07032775878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.02294921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.68643188476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.14053344726562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.37258911132812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.85618591308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.9930419921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.1849822998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.90940856933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.8970947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.43092346191406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3193817138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5253448486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.08332061767578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.06912994384766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.6289291381836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.48124694824219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.74544525146484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.11341857910156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.57701110839844, \"water_flow\": 307.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.67034149169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.09456634521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0099105834961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.42017364501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.72899627685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.63682556152344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.21074676513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.84522247314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4979248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.1671600341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.92129516601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.89991760253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.91217041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.35952758789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0225372314453, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.95758056640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.416656494140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.761810302734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.201194763183594, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.921085357666016, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.723960876464844, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.64607620239258, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.53101348876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.410804748535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.18609619140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.07807540893555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.98965072631836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.957191467285156, \"water_flow\": 4457.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.01996612548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.52938461303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.56216812133789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.67226791381836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.19480895996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.93115234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.7617416381836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.619140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.52864837646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.53715515136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.94198608398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.86876678466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.04730987548828, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.51901245117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.85587310791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.8602523803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.19256591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.7100601196289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.12102508544922, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.5737533569336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.29621887207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.73242950439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.27574157714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.63188171386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.08088684082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.34661102294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.91646575927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.29983520507812, \"water_flow\": 183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.57633972167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.44275665283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.5220947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.2076644897461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.5218505859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.07974243164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.8272476196289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.15418243408203, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.36170959472656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.194091796875, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.169677734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.43492889404297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.693603515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.69854736328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.98931121826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.87252044677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.13674926757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.04792022705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.54617309570312, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.53192138671875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.9261245727539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.89128875732422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.19200897216797, \"water_flow\": 235.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.24087524414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.15908813476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.98049926757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.91039276123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.7107925415039, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.0422592163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.53985595703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.44645690917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.49280548095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0508804321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0721206665039, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.99356842041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.48185729980469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.85343170166016, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.57740783691406, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.33246612548828, \"water_flow\": 197.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.5275650024414, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.7393569946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.59965515136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.25360107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.40091705322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.74362182617188, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.43827819824219, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.82491302490234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.75743103027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.2082748413086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.77723693847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.59535217285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.75242614746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.21099090576172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.69383239746094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.58816528320312, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.3878173828125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.62298583984375, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.82119750976562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.09585571289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.72793579101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.38677215576172, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.43653106689453, \"water_flow\": 286.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.61225128173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.35213470458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.78295135498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.90852355957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.78404235839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.36237335205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.68527221679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.28675842285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.43890380859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.00850677490234, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.96441650390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.20066833496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.4542236328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.7717514038086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.6883773803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.82146453857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.84730529785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.30865478515625, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.64202117919922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.75320434570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.3973617553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.35313415527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.5688705444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.04906463623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.45337677001953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.57384490966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.94721221923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.7279167175293, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.74721908569336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21780.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 290.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.1540412902832, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.68502426147461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.9154052734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.428680419921875, \"water_flow\": 193.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.81507873535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.42292022705078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.38842010498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.55753326416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.57835388183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.83956909179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.71956634521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.63409423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.67256164550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.2969970703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.65364074707031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.21762084960938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4033966064453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6979522705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1531219482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.53337097167969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.9459228515625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1707763671875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.01161193847656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9200439453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.05165100097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.14161682128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.77377319335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.04629516601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0361328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5915069580078, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.48599243164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.25957489013672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.97049713134766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.83613586425781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.59671783447266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.3785400390625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.5108413696289, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.1226806640625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.08499145507812, \"water_flow\": 308.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.03543090820312, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.20896911621094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.17273712158203, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.83712768554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.72376251220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.55097198486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.47540283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.01483154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.74496459960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.83203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.19766235351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.95419311523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.4041748046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.0943603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.92761993408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.62755584716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.30720138549805, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.39404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.08465576171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.849605560302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.61677551269531, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.57134246826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.392860412597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.24675369262695, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.085365295410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.026268005371094, \"water_flow\": 4453.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.15641784667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.10460662841797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.35499954223633, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.237709045410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.32552337646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.21371459960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6865005493164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.67681121826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.7264175415039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.98590850830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.0065689086914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.31495666503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.94869995117188, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.24495697021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.90959930419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.96209716796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.09872436523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.74224853515625, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.19793701171875, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7070083618164, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.23445892333984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.93637084960938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.22157287597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.01327514648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.77413177490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.93616485595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.99163818359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.92571258544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.85581970214844, \"water_flow\": 186.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.5220718383789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.45315551757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.4266357421875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.04469299316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.37199401855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.97062683105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.23970794677734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.44856262207031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.46858215332031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.66029357910156, \"water_flow\": 80.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.81239318847656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.8918685913086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.35918426513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.87303924560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.9243392944336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.67535400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.56752014160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.84457397460938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.27713012695312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.44922637939453, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.7041015625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.87765502929688, \"water_flow\": 242.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.4605484008789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.53065490722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.9286880493164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68893432617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.39175415039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6705093383789, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.63451385498047, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.9659423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.23660278320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.94532012939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.67371368408203, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.7733383178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.45310974121094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.80496215820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.63449096679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.39667510986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.99128723144531, \"water_flow\": 138.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.26416015625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.04065704345703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.97161102294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.05608367919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.64191436767578, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.95195770263672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.42020416259766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.99492645263672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71147155761719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.87765502929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5286865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.16604614257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.4228286743164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.81502532958984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.4420166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.64146423339844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.0887222290039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.5442886352539, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.74996185302734, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.1413803100586, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.56723022460938, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.3854751586914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.17652130126953, \"water_flow\": 393.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.50421142578125, \"water_flow\": 290.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.59725189208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.32295227050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.30484008789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.46515655517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.97980499267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.78032684326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.93827819824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.76556396484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.37007141113281, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.35519409179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.35987091064453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.82955932617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.73601531982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.80125427246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.48966217041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.72831726074219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.97236633300781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.72358703613281, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.4760971069336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.44915771484375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.32365417480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.3262710571289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.768310546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.289794921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.73849487304688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.31745910644531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.82288360595703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.12882614135742, \"water_flow\": 21754.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 277.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 198.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.10832214355469, \"water_flow\": 197.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.79712677001953, \"water_flow\": 194.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.188682556152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.09774017333984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.75035858154297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.3595199584961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.69766235351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.92262268066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.91716766357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.13084411621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.30996704101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.44732666015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.45030975341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.97824096679688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.197509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.74685668945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.61381530761719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.13822937011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.42760467529297, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.61241149902344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.12869262695312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9832305908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.95355987548828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1510009765625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.08212280273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.77525329589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.95205688476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.97412109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.46284484863281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.80125427246094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.89253234863281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.18970489501953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.52294921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.64496612548828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.39978790283203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.93326568603516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.66503143310547, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.56138610839844, \"water_flow\": 321.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.63447570800781, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.24610137939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.64781188964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.0404281616211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7421417236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.86323547363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.54779052734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.67335510253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.89918518066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.00772094726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.69911193847656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.2347412109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.26980590820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.21337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.321189880371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.12969970703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.963069915771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.224464416503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.34651565551758, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.833377838134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.634613037109375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.528587341308594, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.335453033447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.07875442504883, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.94548034667969, \"water_flow\": 4431.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.552303314208984, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.82465744018555, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.63802719116211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.68789291381836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.64689636230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.04812622070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.5947265625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.80484771728516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.20700073242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.80998229980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.97874450683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.2929458618164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.30859375, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.56017303466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.90631866455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.33294677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.62799072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.32942199707031, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.78932189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.54581451416016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.14434814453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.74982452392578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.72626495361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.90432739257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.61099243164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.63159942626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.11265563964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.56999969482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.465576171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.50586700439453, \"water_flow\": 190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.1441421508789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.51099395751953, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7243423461914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.70557403564453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.88814544677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.11143493652344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.83538055419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4534912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.60115814208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.524658203125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.73423767089844, \"water_flow\": 91.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.94035339355469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.48465728759766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.71479797363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.14280700683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.71375274658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.91162109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.23571014404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.57683563232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.55517578125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.55451202392578, \"water_flow\": 279.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.18143463134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.45652770996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.02073669433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.24070739746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.38188171386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.742919921875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5904541015625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.20594024658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.972412109375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.1561508178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.41456604003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.26224517822266, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.12545776367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.4798812866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.39498138427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.95818328857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.82453155517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.88232421875, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.65512084960938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.41787719726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.38418579101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.19973754882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.3004150390625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.69306945800781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.99991607666016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.45901489257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6697998046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.68463134765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.11746215820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4041290283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.5574951171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.37699890136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.93228912353516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.59635925292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.90530395507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.61041259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.81980895996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.83162689208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.88151550292969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.66639709472656, \"water_flow\": 344.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.09737396240234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.00283813476562, \"water_flow\": 696.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.17292785644531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.87982177734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.5318832397461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.40162658691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.4171142578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.01414489746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.80923461914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.70594787597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.58629608154297, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.45342254638672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.65245056152344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.97982025146484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.2872543334961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.34019470214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.22496032714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.40428161621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.51607513427734, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.62149047851562, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.05775451660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.47051239013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.5772705078125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.40031433105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.79852294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11934661865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.56031036376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.787540435791016, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.161075592041016, \"water_flow\": 21726.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.2127685546875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.41722869873047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.155067443847656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.81321716308594, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.99053192138672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.60533905029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.69200134277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.4520263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.90602111816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.06053161621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.071044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.34516906738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.08679962158203, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.78939819335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.3462142944336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.55309295654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.22635650634766, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.56681823730469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.13441467285156, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.19855499267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.81413269042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.32899475097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.73018646240234, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.24921417236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2192153930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.07745361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.18418884277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.8257064819336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.42974853515625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7950668334961, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.00447845458984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.6480941772461, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.96636962890625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.39799499511719, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.25126647949219, \"water_flow\": 371.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.27092742919922, \"water_flow\": 353.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.4278335571289, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.8150863647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.19224548339844, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.43413543701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.3792953491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.35464477539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.4176025390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.55328369140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9457778930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.29805755615234, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.49456787109375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0745849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.50575256347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.26864624023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6500950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.95115661621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.09425735473633, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.37776184082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.93785095214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.908782958984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.97886657714844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.75789260864258, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.697200775146484, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.40115737915039, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.12264633178711, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.879737854003906, \"water_flow\": 4373.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.48123550415039, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.11176681518555, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.45806884765625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.098533630371094, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.03657150268555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.09139633178711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.57958221435547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.72854614257812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.54442596435547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.94303894042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.44013214111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.02995300292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.45172119140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.98585510253906, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.67106628417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.9559326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.39823150634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4180679321289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.68573760986328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.36065673828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.53551483154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.42060089111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.97462463378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.27484893798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.75234985351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8569564819336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.30638122558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.84175109863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.05174255371094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.0981674194336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.77713775634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6529769897461, \"water_flow\": 207.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.98487091064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.63623809814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.59871673583984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.93009948730469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.57695770263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.31774139404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.87657928466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.85275268554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7091064453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.70853424072266, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.88074493408203, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7752685546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.42064666748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.07980346679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.56128692626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.9865493774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.85090637207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.0880355834961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.42559814453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.78882598876953, \"water_flow\": 292.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.50130462646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.07290649414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4368896484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.57254028320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.48460388183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.09335327148438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.55693054199219, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.03266906738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.22315979003906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.87850189208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.89820861816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.72975158691406, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.19100189208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5979232788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.0832290649414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.60447692871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.47126770019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.49368286132812, \"water_flow\": 129.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.32527160644531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.11307525634766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.4053955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.74435424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.79544830322266, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.98568725585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.14643096923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.31885528564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.41017150878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.94471740722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.39772033691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9475555419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.01988220214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.03431701660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.00655364990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.19817352294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.16323852539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.92443084716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.0331802368164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.57389068603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.1259536743164, \"water_flow\": 343.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.90286254882812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.11058807373047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.95497131347656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.97290802001953, \"water_flow\": 715.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.95396423339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.87983703613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.23703002929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.06031799316406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.63475799560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.97073364257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.43949890136719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.77780151367188, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.2662124633789, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.46350860595703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.80701446533203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.7501220703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.0022964477539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.92048645019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.25042724609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.59342193603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.73372650146484, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.25081634521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.92865753173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.50153350830078, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.5691909790039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.44352722167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.97863006591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.2633285522461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.942569732666016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050453186035156, \"water_flow\": 21700.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.055362701416016, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.25569534301758, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.736698150634766, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.31681060791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.36149597167969, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.34444427490234, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.42113494873047, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.51842498779297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.10366821289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2288360595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.46075439453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.12297058105469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.154296875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.73320770263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1740264892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.47859191894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.65180969238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.83197784423828, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0030288696289, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.75482177734375, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.06741333007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.00028991699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.38610076904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.64308166503906, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.07019805908203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.4935531616211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.93621063232422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.96925354003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.85737609863281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.30889892578125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.67033386230469, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.4552230834961, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.82884979248047, \"water_flow\": 523.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.95201873779297, \"water_flow\": 506.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.26184844970703, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.41473388671875, \"water_flow\": 131.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.53656768798828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.9078140258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.41780853271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02539825439453, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.2652359008789, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.83875274658203, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.37816619873047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.43952941894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.507568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.21685028076172, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.86404418945312, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0428009033203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.847412109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.73123168945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.2557373046875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.545753479003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.03672790527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.87885284423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.50888442993164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.749969482421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.80924987792969, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.08009338378906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.9655647277832, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.502689361572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.02935791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.520328521728516, \"water_flow\": 4315.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.06785202026367, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.57334518432617, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.275272369384766, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.263145446777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.803165435791016, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.828819274902344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.628639221191406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.22911834716797, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.12339782714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.07992553710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.72998046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.05545806884766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.68511199951172, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.13594818115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.20710754394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.49703979492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.29308319091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.6595458984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8980941772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.61502838134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.56336212158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8623275756836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.31591033935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.02764129638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.12852478027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.3029556274414, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.13180541992188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.91690063476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.75340270996094, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.13568878173828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.90764617919922, \"water_flow\": 212.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.88201904296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.04298400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.0177993774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.31369018554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.1485366821289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.3889389038086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.24624633789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.37862396240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.02519989013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.92823028564453, \"water_flow\": 114.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.35234832763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.64090728759766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.3997573852539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.64315795898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.94429779052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.46216583251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.86811828613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.6951904296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.4881591796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.8354263305664, \"water_flow\": 299.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.30052185058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.695068359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.70001220703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.18888854980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.42300415039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.25070190429688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.17936706542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2044677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.48480224609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.34585571289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.66387176513672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.45974731445312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.94237518310547, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.19559478759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.31886291503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.10240936279297, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.35706329345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.08513641357422, \"water_flow\": 125.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.25409698486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.41165924072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.16448974609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.20111083984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.73323822021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.60981750488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.205810546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.15699768066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.84005737304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.32408142089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.21104431152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0201416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.64102172851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.57919311523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.39220428466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.36161041259766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.21316528320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.46246337890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.44580078125, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.42716217041016, \"water_flow\": 342.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.05006408691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.2317886352539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.86222076416016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.5112075805664, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.00944519042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.87854766845703, \"water_flow\": 722.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.26427459716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.83433532714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.8101806640625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.15165710449219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.75067138671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.66571044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.78227233886719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.6458511352539, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.93871307373047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.7816390991211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.92787170410156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.14663696289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.88336944580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.99179077148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.87376403808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.21235656738281, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.78379821777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.30238342285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.57512664794922, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.6317367553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.91829681396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.37371826171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.52020263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.09714126586914, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21683.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.1043815612793, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.5853385925293, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.51083755493164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.77388763427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.66065979003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.32820129394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.6810531616211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.60289764404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.1829605102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.94647979736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.1703109741211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.04717254638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.78511810302734, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.7034683227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0703887939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.46125793457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.6591796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.81571960449219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.75313568115234, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.2752456665039, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.08955383300781, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.46509552001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8683090209961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.08808898925781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.13558959960938, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.80551147460938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.60343933105469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.22834777832031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.51375579833984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.46439361572266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.80644226074219, \"water_flow\": 547.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.53511810302734, \"water_flow\": 527.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.74880981445312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.51493072509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.73794555664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.89708709716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.60505676269531, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.8083724975586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.63371276855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.52531433105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.45586395263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.14226531982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.472900390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.44065856933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.54640197753906, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.56808471679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8396453857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.95985412597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.50570678710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.14736938476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.57266235351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.86921691894531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.06191635131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.54939651489258, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.996028900146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.0975227355957, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.58048629760742, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.756553649902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.811370849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.85850143432617, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.060028076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.17317199707031, \"water_flow\": 4311.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.208683013916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.76156234741211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.034568786621094, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.59096908569336, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.01230239868164, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.05742645263672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.38138198852539, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.01280975341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.1170654296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.10990142822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.64103698730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.0169677734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.23866271972656, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.65082550048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.1997299194336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.1562271118164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.45610809326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.89096069335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.19197845458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.91665649414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.08151245117188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.18536376953125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.6233901977539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.10626220703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.65921783447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.45577239990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.12569427490234, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.62303924560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.4524154663086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.46078491210938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.96328735351562, \"water_flow\": 220.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.83634948730469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.11869812011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.19924926757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.49063873291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.20616149902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.88528442382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.16429901123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.38314056396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.43082427978516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.42277526855469, \"water_flow\": 119.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.15377807617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.64055633544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.9843521118164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.75405883789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.74885559082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.94603729248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.41981506347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.68431854248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.80622863769531, \"water_flow\": 917.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.62264251708984, \"water_flow\": 612.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.90940856933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.75865173339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.6315689086914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.16571807861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.05611419677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.61077117919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.6823501586914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.32118225097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6056365966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.66287231445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.79296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.86357116699219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.6357650756836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.18475341796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.46656036376953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.37258911132812, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.20514678955078, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.96004486083984, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.17242431640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.09931182861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.74530029296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.54864501953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.42874145507812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.90304565429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1303253173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0522918701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.73345947265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.29562377929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.21841430664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.59312438964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2920684814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.02590942382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.71498107910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7475814819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.36055755615234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.87672424316406, \"water_flow\": 146.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.37373352050781, \"water_flow\": 190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.50738525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.76249694824219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.47950744628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.304443359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.1454086303711, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.35358428955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.25399780273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.05503845214844, \"water_flow\": 723.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.28054809570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.91862487792969, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.14885711669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.23196411132812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.4480972290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.52079010009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.81241607666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.60536193847656, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.7381591796875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.28131103515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.48082733154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.56493377685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.07418060302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.13652801513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.69628143310547, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.35443115234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.85610961914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.14395904541016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.7076416015625, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.3817367553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.53721618652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.58247375488281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.086185455322266, \"water_flow\": 21661.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09663391113281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.49522018432617, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.07127380371094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.39005661010742, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.69969177246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.54822540283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.70936584472656, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.96439361572266, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.60126495361328, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.50828552246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.31306457519531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.15489196777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7213363647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.6914291381836, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.14142608642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.76228332519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.99271392822266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.62482452392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.70401763916016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.87805938720703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.31724548339844, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.6800537109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.60065460205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.87945556640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.55005645751953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.39581298828125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.14862060546875, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.86090850830078, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.81890106201172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.6116714477539, \"water_flow\": 639.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.25061798095703, \"water_flow\": 627.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.5261459350586, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.57083129882812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.94036102294922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.75889587402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.54955291748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.80760192871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.0411605834961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.6444091796875, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.2564468383789, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.638916015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.1282958984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.21150970458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.54338836669922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0485610961914, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.95602416992188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.36859130859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.8511962890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.11306762695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.51153564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.44313049316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3199920654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.89926528930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.84079360961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.196754455566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.87054443359375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.27096176147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.37799835205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.756103515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.11402893066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.11961364746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.017086029052734, \"water_flow\": 4305.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.98869323730469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.47925567626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.40922927856445, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.457820892333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.269798278808594, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.59138107299805, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.06877517700195, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.45524597167969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.91670989990234, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.68730926513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.64273834228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.23678588867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.66613006591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.02104949951172, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.95872497558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.82286071777344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.76737976074219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.02921295166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.26921844482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.10948181152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.10966491699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9488525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.39295959472656, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.84593963623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.67288208007812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.77728271484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.31484985351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.47941589355469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.77005004882812, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.1555404663086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.13097381591797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.85716247558594, \"water_flow\": 232.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.9456558227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.50759887695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.76019287109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.31816101074219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.2905502319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.24696350097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.08907318115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.77349853515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.04098510742188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.96089935302734, \"water_flow\": 124.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.84307861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.57943725585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.4751968383789, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.92163848876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.65380096435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.8675765991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.88888549804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.07940673828125, \"water_flow\": 925.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.73881530761719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.2801284790039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.00605773925781, \"water_flow\": 611.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.38529205322266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.67723846435547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.59435272216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.17086791992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.92890930175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.94425964355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1007080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.16111755371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7620391845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.16313934326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.8766860961914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.590576171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.23204803466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.88719940185547, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.2783432006836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.50057983398438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02837371826172, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.71903991699219, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8118896484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.55387115478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.77686309814453, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.0106201171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.44551086425781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.13475036621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.9166259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.89813232421875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1970977783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.03567504882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.38148498535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.7809066772461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.18733978271484, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.11107635498047, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.43968200683594, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.35189056396484, \"water_flow\": 139.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.50364685058594, \"water_flow\": 188.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.10057067871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.60176086425781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.27770233154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.33515930175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.04119873046875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.13988494873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.81905364990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.28350830078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.8181381225586, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.85684204101562, \"water_flow\": 737.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.7333984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.51435852050781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.02900695800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.19171142578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.12552642822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.89724731445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.87691497802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.34518432617188, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.29783630371094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.58419799804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.01725769042969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.71102905273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.13418579101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.04994201660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.7593002319336, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.3471908569336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.36241149902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.83439636230469, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.4434585571289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.22542572021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.28327178955078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21643.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.20145034790039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.542598724365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.34159469604492, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.61223602294922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.73403549194336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.30870056152344, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.57237243652344, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.19955444335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.9814453125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.83678436279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.90172576904297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.22352600097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.28875732421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.7319107055664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.46611022949219, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29994201660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.55931854248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.47570037841797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.2152328491211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.13568115234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9372787475586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.94818115234375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.52851867675781, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.99425506591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.7802734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.52045440673828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.0588607788086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.94933319091797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.73674011230469, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.87207794189453, \"water_flow\": 658.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.29696655273438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.9023666381836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.81917572021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.25141906738281, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.2878646850586, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.5309066772461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.15830993652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.43082427978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.53894805908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.67853546142578, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.36836242675781, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.18118286132812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.530029296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.28153991699219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95088958740234, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.44796752929688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.30398559570312, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.66893768310547, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.77811431884766, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.11333465576172, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.83984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.17422485351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.45361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.50559616088867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.32635498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.51544952392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.0662727355957, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.08414459228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.52574157714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.57858276367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.98418045043945, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.636146545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.542694091796875, \"water_flow\": 4298.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.058876037597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.992523193359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.09324645996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.475372314453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.396636962890625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.42097091674805, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.58659744262695, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.83291625976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.19134521484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.24446105957031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.33462524414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.02706146240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.19709777832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.13716888427734, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.41765594482422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.27424621582031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.93890380859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.35195922851562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.0963363647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.45144653320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.91679382324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.03531646728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.54486083984375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.80921936035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.34500885009766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.71044158935547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.70088958740234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.17150115966797, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.6292724609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.20864868164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.94841003417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.9862289428711, \"water_flow\": 243.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.82568359375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.88628387451172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.681884765625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.1432876586914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.22620391845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.92196655273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.34830474853516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.16864013671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.4090576171875, \"water_flow\": 132.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.74483489990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.58011627197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.2955322265625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.429443359375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.45254516601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.93607330322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.98131561279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.41566467285156, \"water_flow\": 929.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.0541763305664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.02713775634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.76873016357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.6843032836914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.34603881835938, \"water_flow\": 602.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6337890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.76191711425781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.43941497802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4599838256836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.149169921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.79624938964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.802490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.18975830078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.38558197021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.72318267822266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2955322265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.00776672363281, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.97943115234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.177001953125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.23442840576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.7085952758789, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.15078735351562, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.18092346191406, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.64689636230469, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.91987609863281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.12773132324219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1934814453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.00511169433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.23373413085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.92364501953125, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.97019958496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0894317626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7507781982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.67528533935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.46316528320312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.62777709960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.76939392089844, \"water_flow\": 119.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.39254760742188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.48807525634766, \"water_flow\": 181.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.54795837402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.41063690185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.82808685302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.66224670410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.96976470947266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.6118392944336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.87445068359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.78848266601562, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.34120178222656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.70083618164062, \"water_flow\": 760.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.35340118408203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.59037017822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.84799194335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.32589721679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.37332916259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.98355102539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.38529205322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.49226379394531, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.20819854736328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.02488708496094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.75833129882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.39441680908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.00312042236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.52741241455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.29911804199219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.32672882080078, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.24906921386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.46884155273438, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.65531921386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.79016876220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.52835464477539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21629.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07623291015625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.429264068603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.20484161376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.24696350097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.00576782226562, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.9789047241211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.76541900634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.11476135253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.33192443847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.52702331542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.45864868164062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.65724182128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.18019104003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.10275268554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.72811889648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.79548645019531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.60558319091797, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.67362213134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.40508270263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.4578857421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.58663940429688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.0002212524414, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.19624328613281, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.05821990966797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.98003387451172, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.99029541015625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.32149505615234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.28234100341797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.59000396728516, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.30835723876953, \"water_flow\": 662.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.48486328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.84194946289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.28837585449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.92912292480469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.31090545654297, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.67086029052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.06480407714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.64508819580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.77230834960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.594970703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.43164825439453, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.88176727294922, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02703094482422, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.75651550292969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.22168731689453, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.32918548583984, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.5598373413086, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.33124542236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.41980743408203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.38453674316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.8910140991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.38809967041016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.2941131591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.7860107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.47522735595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.41188049316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.68394470214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.10246276855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.87289428710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.53854370117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.64934158325195, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.078433990478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.67272186279297, \"water_flow\": 4293.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.06776809692383, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.43330001831055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.09555435180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.805511474609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.56946563720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.597476959228516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.55385208129883, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.2543830871582, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.5646743774414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.87214660644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.90998077392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.76545715332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.53423309326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.15892028808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.39264678955078, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.48780822753906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.76813507080078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.22477722167969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.58052062988281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.13199615478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.56136322021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.82025909423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.97003936767578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.91650390625, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.831298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.24858856201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.98518371582031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.49159240722656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.09151458740234, \"water_flow\": 2070.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.4969253540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.24795532226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.85987091064453, \"water_flow\": 259.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.95835876464844, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.66120910644531, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.16343688964844, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.32971954345703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.55055236816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.72469329833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.41233825683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.82442474365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.32196044921875, \"water_flow\": 152.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.31834411621094, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.2331314086914, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.35237884521484, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.86341094970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.57054138183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.51141357421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.42101287841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.2114028930664, \"water_flow\": 932.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.58027648925781, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.67634582519531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.25077056884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.62693786621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.15795135498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.15531158447266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.68730163574219, \"water_flow\": 591.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.39724731445312, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.38228607177734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.45085144042969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.15260314941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.24153900146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.91778564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0675506591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.55595397949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.29479217529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.89927673339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.38899230957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.27131652832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.70732116699219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.0755386352539, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.57557678222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.66114044189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.48822784423828, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.27601623535156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.92864227294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.59434509277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.98358154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.52113342285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.39959716796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.8626937866211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.60704803466797, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.62396240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8189697265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.83434295654297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.36565399169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.5605697631836, \"water_flow\": 118.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.52851104736328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.63243103027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.15385437011719, \"water_flow\": 175.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.39793395996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.07364654541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.20127868652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4219970703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.18225860595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.86021423339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.8951416015625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.83064270019531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.09577941894531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.71935272216797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.99217224121094, \"water_flow\": 772.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.5153579711914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.56424713134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.24763488769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.239501953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.2686767578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.7288818359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.53059387207031, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.22698211669922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.947998046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.11029052734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.75453186035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.92439270019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.58238220214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.83357238769531, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.3000717163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.743309020996094, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.47796630859375, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.47760772705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.97236251831055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05035400390625, \"water_flow\": 21545.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.1065673828125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.67698287963867, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.32613754272461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.60690689086914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.4644546508789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.58447265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.0712890625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.67060089111328, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.11026763916016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.48719024658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.21730041503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.83287811279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.43511962890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.86048889160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.14063262939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.26029968261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.93741607666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.20165252685547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.75492858886719, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.88689422607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.19532012939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.57328796386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.4295654296875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.62592315673828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.955078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.84740447998047, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.03013610839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.67952728271484, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.05265045166016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.30105590820312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.09778594970703, \"water_flow\": 697.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.31282043457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.59740447998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.23532104492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.98200225830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.9163818359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.76901245117188, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.43807983398438, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.3670883178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.96937561035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.98883819580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.87989044189453, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.23995971679688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.75199890136719, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.42642211914062, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.46055603027344, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.2101821899414, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.3458023071289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.25357818603516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.44833374023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.42853546142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.33897399902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.34457397460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.28424072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.72368621826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3773193359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.37757110595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.60543060302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.51718139648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.65821838378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.11808395385742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.67131805419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.21516418457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.7813720703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.523048400878906, \"water_flow\": 4279.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.15619659423828, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.43858337402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.70503234863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.816410064697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.418888092041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.453243255615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.560916900634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.85728073120117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.07617950439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.23795318603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.38081359863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.15416717529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.97566223144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.7305908203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.58491516113281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.6895751953125, \"water_flow\": 91.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.27864837646484, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.5643081665039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.60589599609375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.8333740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.55058288574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.0654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.97884368896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.63973999023438, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.82215118408203, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.0505599975586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.73389434814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.33934020996094, \"water_flow\": 2082.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.08362579345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.51191711425781, \"water_flow\": 2052.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.67544555664062, \"water_flow\": 2047.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.90672302246094, \"water_flow\": 1745.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.96532440185547, \"water_flow\": 1744.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.43558502197266, \"water_flow\": 1743.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.327392578125, \"water_flow\": 1742.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.86214447021484, \"water_flow\": 1740.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.34789276123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.53153991699219, \"water_flow\": 1731.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.52006530761719, \"water_flow\": 1727.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.97632598876953, \"water_flow\": 157.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.8194580078125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.29885864257812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.87975311279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.10669708251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.54289245605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.47952270507812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.87639617919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.90718078613281, \"water_flow\": 955.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.86154174804688, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.57720947265625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.21810150146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.72903442382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.14633178710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.38809967041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.14545440673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.27291870117188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.70089721679688, \"water_flow\": 577.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.24962615966797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.52655029296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.3071517944336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.58515167236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.31732177734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.50183868408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.21263885498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.15608215332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.68406677246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.5630111694336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.90941619873047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.41458129882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1478500366211, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.33425903320312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.19331359863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.1622085571289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.45751190185547, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.54315948486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.34735107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.54579162597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.39747619628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.94879150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.85989379882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.75120544433594, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.97956085205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.04830169677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.86213684082031, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.22777557373047, \"water_flow\": 116.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.9607925415039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.83453369140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.11174011230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.9182357788086, \"water_flow\": 172.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.12028503417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.28437805175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.61553192138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.02884674072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.68814849853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.9825668334961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.98784637451172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.17381286621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.75468444824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.6391372680664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.18138122558594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.8448486328125, \"water_flow\": 778.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.37025451660156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.97491455078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.51466369628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.1398696899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.84786987304688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.27824401855469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.16752624511719, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.93794250488281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.9517822265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.72860717773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.52278137207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.89994812011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.216392517089844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.914554595947266, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.51337432861328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.68081283569336, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.448081970214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05659866333008, \"water_flow\": 21518.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.40268325805664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.95478057861328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.330509185791016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.73064422607422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.44471740722656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.75975799560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.80874633789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.46402740478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.2845458984375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.85027313232422, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.22184753417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.30667114257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.13123321533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.51139831542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.70231628417969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.29661560058594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.07586669921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.11262512207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.17208862304688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.94620513916016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.74215698242188, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.32025146484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.13817596435547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.5492935180664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.20709228515625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.14887237548828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.49320220947266, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.84608459472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.91503143310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.04248809814453, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.84815216064453, \"water_flow\": 706.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.32879638671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.7892837524414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.58290100097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.36565399169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.09725952148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.0516586303711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.83859252929688, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.53795623779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.2104263305664, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.58181762695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.68180084228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.01554870605469, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.97000885009766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.69143676757812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.95305633544922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.46961212158203, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.97380065917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.83097076416016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.29257202148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.65367126464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.878662109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2683563232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6050567626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.7023162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.09461975097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.30123138427734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.79407501220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.10536193847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.35869216918945, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.82932662963867, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.94694519042969, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.1068115234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.39631271362305, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.516197204589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.72257614135742, \"water_flow\": 4271.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.320396423339844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.300758361816406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.05714416503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.6342887878418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.30281066894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.87712860107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.78252029418945, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.08470916748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.23158264160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.09900665283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.83966064453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.63179016113281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.81255340576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.63578796386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.99794006347656, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.62108612060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.3370361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.54710388183594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.45933532714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.83997344970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.64010620117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.2639389038086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.20329284667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.10414123535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.252685546875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.18769836425781, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.29120635986328, \"water_flow\": 2085.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.68362426757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.67811584472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.71376037597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.94304656982422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.75919342041016, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.14783477783203, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.49272918701172, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.87161254882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.12895202636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.66011810302734, \"water_flow\": 1737.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.75240325927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.04655456542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.14169311523438, \"water_flow\": 1567.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.25059509277344, \"water_flow\": 1103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.75381469726562, \"water_flow\": 1102.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.8196792602539, \"water_flow\": 967.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.32996368408203, \"water_flow\": 966.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.4798355102539, \"water_flow\": 964.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.76520538330078, \"water_flow\": 958.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.10499572753906, \"water_flow\": 957.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.0117416381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.99022674560547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.49600982666016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.06257629394531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.62435150146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.82579803466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.23628997802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.63341522216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.13691711425781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.7423324584961, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.10492706298828, \"water_flow\": 556.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.47309112548828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.76718139648438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.89830017089844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.47823333740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.80445861816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.08850860595703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.00425720214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.52967834472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.12754821777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.218017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.2890396118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.9481430053711, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.39141845703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.36711120605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.88865661621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.1050033569336, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.27316284179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4873504638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5410919189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3912353515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.03121948242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.35256958007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.32939910888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.71205139160156, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.76605224609375, \"water_flow\": 112.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.80782318115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.14440155029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.20207977294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3995132446289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.65985107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.5574951171875, \"water_flow\": 169.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8370590209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.75324249267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.35202026367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.28907775878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.88097381591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.76915740966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.74478912353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.40196990966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.84890747070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.99449157714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.35533142089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.90575408935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.3230209350586, \"water_flow\": 779.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.605648040771484, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.58755874633789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.29773712158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.93045043945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.21870422363281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.0283432006836, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.28207397460938, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.677860260009766, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.77752685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.36776733398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.6650390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.93254852294922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.6779899597168, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09495544433594, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21379.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 122.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.177757263183594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.07803726196289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.52570343017578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.04588317871094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.60531616210938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.08091735839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.62763977050781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.40819549560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.92385864257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.13500213623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.74406433105469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.86046600341797, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.0562515258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.656982421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.10717010498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.19170379638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.76351928710938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.31647491455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.60334014892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.00639343261719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.84982299804688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.92442321777344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.22633361816406, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.57846069335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.13838195800781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.47935485839844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.6340560913086, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.71147155761719, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.74607849121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.80152893066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.52320861816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.10025024414062, \"water_flow\": 763.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.29524230957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.2351303100586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.84474182128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.25177764892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.37492370605469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.98365783691406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.68832397460938, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.98551177978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.723876953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.08975982666016, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.21136474609375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.06298065185547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.40560150146484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.14271545410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.52767944335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.13866424560547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.70044708251953, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.61811828613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.5549087524414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.17279815673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.19116973876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.77613830566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.16162109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.08623504638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.51648712158203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.76947021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.68872833251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.5284423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.91112518310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.85803985595703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.68947982788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.435585021972656, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.71034622192383, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.27253723144531, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.11696243286133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.11512756347656, \"water_flow\": 4226.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.286373138427734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.43241500854492, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.51789093017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.73283386230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.89509582519531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.71724319458008, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.16591262817383, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.813297271728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.64945983886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.72453308105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.76459503173828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.54434204101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.20246887207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.03264617919922, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.44415283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.24961853027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.40202331542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.12543487548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.49214172363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.37883758544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.94872283935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7666244506836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.59342956542969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.43331909179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.55805969238281, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.00115966796875, \"water_flow\": 2111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.64214324951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.7232437133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.18196105957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.39823913574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.36488342285156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.2520751953125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.0931396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.04932403564453, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.83699035644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.67959594726562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.46725463867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.69544982910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.87677001953125, \"water_flow\": 459.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.73967742919922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.54933166503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.91885375976562, \"water_flow\": 134.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.1968994140625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.34371948242188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.74842834472656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.17108154296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.11666870117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6287841796875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.94512176513672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.39920806884766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.93814086914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.12945556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.82035827636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.72456359863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.63884735107422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.94010162353516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.66368865966797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.9702377319336, \"water_flow\": 548.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.69759368896484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.76746368408203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.37934875488281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.70240783691406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.79300689697266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.03370666503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31275939941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7482452392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.53399658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.96370697021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.75698852539062, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.38507843017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.79736328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.53756713867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.18856811523438, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9571075439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.24111938476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.33990478515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.65890502929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.07200622558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.03907775878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.19657897949219, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.79966735839844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.19422149658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.4124755859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.75765991210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.0559310913086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.88043212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.08660888671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.1687240600586, \"water_flow\": 164.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.21260070800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.58657836914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.15650177001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.87542724609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.53682708740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.98722076416016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.48725128173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.17684936523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.4954605102539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.27632904052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.48889923095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.12781524658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.60003662109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.78204345703125, \"water_flow\": 780.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.09993362426758, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.35061645507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.6651611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.48176574707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.03407287597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.97928619384766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.462013244628906, \"water_flow\": 102.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.69284439086914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.7142333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.61843490600586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.62932586669922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.60152816772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05072784423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21253.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.15129852294922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.43336486816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.772830963134766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.9765396118164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.06302642822266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.7022476196289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.04165649414062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.74829864501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.39265441894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.18289947509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.81539154052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.8421630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.29310607910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.19983673095703, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.45308685302734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.60846710205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.1534194946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.82610321044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.01537322998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.55155181884766, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.81973266601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.15291595458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.86112976074219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.37725067138672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.85372924804688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.26790618896484, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.34351348876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.68706512451172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.21821594238281, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.75518798828125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.23540496826172, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.19883728027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.00846099853516, \"water_flow\": 779.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.02722930908203, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.9206314086914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.12178802490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.34452056884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.82157135009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.8358154296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.89892578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.93424224853516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.5680160522461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.97647094726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.2449951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.5422134399414, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.81561279296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.9600601196289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.32324981689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6655044555664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.89569091796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.23098754882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.68025970458984, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.53018188476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.19327545166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.65865325927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.42745208740234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.86203002929688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.21646118164062, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.68384552001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.16128540039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.7861557006836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.48342895507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.31269073486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.543212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.18083953857422, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.39423370361328, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.310035705566406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.332462310791016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.09562301635742, \"water_flow\": 4222.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.98964309692383, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.54505157470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.07774353027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.375221252441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.67886734008789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.1661376953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.83088684082031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.939056396484375, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.550777435302734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.28791046142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.49915313720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.524864196777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.58342361450195, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.26055908203125, \"water_flow\": 107.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.07027435302734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.22456359863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.05110168457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.8471450805664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.49517059326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.87472534179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.33121490478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.72400665283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.37986755371094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.15599060058594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.63621520996094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.00031280517578, \"water_flow\": 2122.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.88480377197266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.58683776855469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1177978515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.45848083496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.33353424072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.93252563476562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.61691284179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.08748626708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.7160873413086, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.75540924072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.79520416259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.24478912353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.17169189453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.58155822753906, \"water_flow\": 455.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.4115219116211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.62732696533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.65962219238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.35881042480469, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.50541687011719, \"water_flow\": 119.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.94337463378906, \"water_flow\": 117.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.8658218383789, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.67752075195312, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.54149627685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.27899169921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.91427612304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.66358184814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.1433334350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.63966369628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.99358367919922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.4527359008789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.44444274902344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.93196868896484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.34956359863281, \"water_flow\": 532.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.7027359008789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.5298080444336, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.31353759765625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.13716125488281, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.31438446044922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.66585540771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.61083984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.92295837402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.4210433959961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.81993103027344, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.61519622802734, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.03546905517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47874450683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.90628051757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.38720703125, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.1137466430664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.61834716796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.17596435546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.99026489257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.97080993652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.23775482177734, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.77323913574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.74031066894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.11101531982422, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.53580474853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.32431030273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.58627319335938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8886947631836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.41370391845703, \"water_flow\": 160.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.8138198852539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.10821533203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.52510833740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.98504638671875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.18138885498047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.73771667480469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.35073852539062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.5454330444336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.82835388183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.57770538330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.95645904541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.3170394897461, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.324832916259766, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.06890869140625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.01210403442383, \"water_flow\": 797.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.624664306640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.28897094726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.80033874511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.53014373779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.98787689208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.24063110351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.124855041503906, \"water_flow\": 110.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.650604248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.041587829589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.41364288330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.520545959472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.23654556274414, \"water_flow\": 21224.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 120.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.461124420166016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.723758697509766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.12075805664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.39012145996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.19841003417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.974365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.3156509399414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.66578674316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.48249816894531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.24476623535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.48774719238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.53116607666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.15958404541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.53744506835938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.04354858398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.63101196289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.0881576538086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.49767303466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.42481231689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.55734252929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.41558074951172, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.94587707519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.21770477294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.7926254272461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.85480499267578, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.48162841796875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.35970306396484, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.44601440429688, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.20285034179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.2365493774414, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.7546615600586, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.70335388183594, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.87039184570312, \"water_flow\": 814.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.91650390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.45356750488281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.79876708984375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.03520965576172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.73849487304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.77449798583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.13444519042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.00391387939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.40135955810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.59644317626953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.70867919921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.03862762451172, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.20374298095703, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.35810089111328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.14634704589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.585693359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.64048767089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.98572540283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.35233306884766, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.4519271850586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.88067626953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.66666412353516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.06365203857422, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.6700668334961, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.83761596679688, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.95746612548828, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.39983367919922, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.17159271240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.51280212402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.98738098144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.99346923828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.41476440429688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.95130157470703, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.0764274597168, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.173370361328125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.33900451660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.20845413208008, \"water_flow\": 4213.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.367679595947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.30295181274414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.17349624633789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.27655029296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.24544906616211, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.274925231933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.53681945800781, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.15306091308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.3232536315918, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.28327941894531, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.900794982910156, \"water_flow\": 2486.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.19291687011719, \"water_flow\": 2368.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.07682800292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.10216522216797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.25216674804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.58998107910156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.1869125366211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.35808563232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.59333038330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.25518798828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.52383422851562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.27140808105469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.12699127197266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.92127227783203, \"water_flow\": 2133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.72789764404297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.34957122802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.2588119506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.67244720458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.64762878417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.286376953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.59210968017578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.66768646240234, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.3091812133789, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.68584442138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.8927001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.1288833618164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.98583984375, \"water_flow\": 446.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.180419921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.78668975830078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.56745910644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.35272979736328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.53901672363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.20697784423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.90862274169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.1900863647461, \"water_flow\": 100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.68540954589844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.95091247558594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.70823669433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.11366271972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.64085388183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.81570434570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.48942565917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.53242492675781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.35045623779297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.24215698242188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.44178771972656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.76930236816406, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.55938720703125, \"water_flow\": 475.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.81314849853516, \"water_flow\": 452.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.57518005371094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.60921478271484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71470642089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.51991271972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.38154602050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.4221954345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.53984069824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.56611633300781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.96690368652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.29751586914062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.55926513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.18648529052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.18873596191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.79216003417969, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.94940185546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1080780029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.62229919433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.71913146972656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.74652099609375, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.8196792602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0856170654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.76241302490234, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.02445220947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.60958862304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.06019592285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.89533996582031, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.73831939697266, \"water_flow\": 149.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.68081665039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.11283111572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.36288452148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.3730239868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.64370727539062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.35011291503906, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.04412078857422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.51483917236328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.10884857177734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.7278060913086, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.74358367919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.30542755126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.8451919555664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.45455932617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.31812286376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.16705322265625, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.96136474609375, \"water_flow\": 801.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.6196060180664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.95384216308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.10713195800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.8775405883789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.67637634277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.46627426147461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.642215728759766, \"water_flow\": 111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.082218170166016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.56438064575195, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.8790283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.14727020263672, \"water_flow\": 21202.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 119.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.84143829345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.25659942626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.91095733642578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.73114013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.40157318115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.16787719726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.29556274414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.66434478759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.11444091796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.23946380615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.51927947998047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.31803131103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.09929656982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.98562622070312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.99983215332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.59740447998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.14501190185547, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.54625701904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.82237243652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.29236602783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.44758605957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.87210845947266, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.4903793334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.96949768066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.1112289428711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.07754516601562, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.75189971923828, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.78155517578125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.76072692871094, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.67680358886719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.00325012207031, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.28517150878906, \"water_flow\": 833.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.50153350830078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.8761215209961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.73003387451172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.85438537597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.29966735839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.72570037841797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.88360595703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.80919647216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.77154541015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.63797760009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.21109008789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2853775024414, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.8433837890625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.63390350341797, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4380111694336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.30841064453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.8963394165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.42826843261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.67736053466797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.68695831298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.99998474121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.99593353271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0853271484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.74590301513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.08676147460938, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.22364807128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.11772155761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.38870239257812, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8495864868164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.36857604980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.77346801757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.03593444824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.31897735595703, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.48727416992188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.03080749511719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.38252258300781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.76210021972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.27099609375, \"water_flow\": 4210.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.73991012573242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.42638397216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.26713180541992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.43008804321289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.08987045288086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2638053894043, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.25326156616211, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.64424514770508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.64741516113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.33673858642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.647438049316406, \"water_flow\": 2503.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.7450065612793, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.15616989135742, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.05488586425781, \"water_flow\": 2367.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.82132720947266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.32197570800781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.36278533935547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.7553939819336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.1948471069336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.09732818603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.32200622558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.16204071044922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.90267944335938, \"water_flow\": 2150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.62939453125, \"water_flow\": 2137.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.7289047241211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.33832550048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.53074645996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8587646484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.73637390136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.59069061279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.846435546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.51640319824219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.90873718261719, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.15426635742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.25911712646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.4818115234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.09591674804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.9496841430664, \"water_flow\": 439.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.81653594970703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.94847869873047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.73116302490234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.92079162597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.42941284179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.33831787109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.22798919677734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.11528778076172, \"water_flow\": 94.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.1395263671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.7325210571289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.90093994140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.60316467285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.14276123046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.17029571533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.0063705444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.64601135253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.06716918945312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.8384017944336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.48918914794922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.47087860107422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.07127380371094, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.78871154785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.35773468017578, \"water_flow\": 451.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.06134796142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.62875366210938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.87683868408203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.12918090820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.71255493164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.25025177001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.03305053710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.30308532714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.78108215332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.50276184082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.47557830810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.05982971191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.07307434082031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.05035400390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.34251403808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.72390747070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.68402099609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.12129211425781, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.66319274902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.06369018554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5609130859375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.3446807861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.57115173339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.19329071044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.18403625488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.30534362792969, \"water_flow\": 145.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.59390258789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.28157043457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.48115539550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.08367919921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.59307861328125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.5447006225586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.82832336425781, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.40850830078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.627685546875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.7467041015625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.37737274169922, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.2554931640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.80621337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.84170532226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.08191680908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.08111572265625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.81963348388672, \"water_flow\": 818.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.2528076171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.1529769897461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.43670654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.1100845336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.81101989746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.51138687133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.12358093261719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.207916259765625, \"water_flow\": 117.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.11578369140625, \"water_flow\": 136.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.65226364135742, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05436325073242, \"water_flow\": 21186.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 118.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05000305175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.4062385559082, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.90479278564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.31216430664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.39012145996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.02478790283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.9211654663086, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.90804290771484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.28404998779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.60214233398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.46414184570312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.54370880126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.05162048339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.67489624023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.50799560546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.86309814453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.42562866210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.50812530517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9972152709961, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.13214111328125, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.3444595336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.29515838623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.87911987304688, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.23272705078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.91285705566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9854965209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.92387390136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.49547576904297, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.23461151123047, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.18355560302734, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.07617950439453, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.67730712890625, \"water_flow\": 843.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.80235290527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.60369110107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.65693664550781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8039779663086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.92594909667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.98735046386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.45132446289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.24604797363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.39503479003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.34247589111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.61454010009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.58966827392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.01486206054688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.38887786865234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.15081787109375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.19772338867188, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.42668151855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.883056640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.26382446289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.48575592041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.30000305175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.90312194824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.36656951904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.78968048095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.75826263427734, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.07593536376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.06148529052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.10282897949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9846420288086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.5381851196289, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.00882720947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.83551788330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.09368896484375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.80939483642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.73162841796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.48094177246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.149227142333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06513595581055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.809349060058594, \"water_flow\": 4206.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.463741302490234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.84166717529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.53136444091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.909156799316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.009273529052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2706413269043, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.91379928588867, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.946617126464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.39576721191406, \"water_flow\": 2509.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.57181930541992, \"water_flow\": 2507.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.07041549682617, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.16218185424805, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.7093276977539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.44886779785156, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.83318328857422, \"water_flow\": 2360.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.14832305908203, \"water_flow\": 2353.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.88420104980469, \"water_flow\": 2348.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.96231842041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.01458740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.57091522216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.91866302490234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.06145477294922, \"water_flow\": 2161.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.02506256103516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.16495513916016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.42644500732422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.90293884277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.04412841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.33724212646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.94207000732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.07601928710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.38085174560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.67835235595703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.99673461914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.24263763427734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.17991638183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.38163757324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.71338653564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.88784790039062, \"water_flow\": 432.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.63036346435547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.88580322265625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6822280883789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.51627349853516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.05310821533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.36235046386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.96429443359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.69025421142578, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.53980255126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.81610870361328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.75404357910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2072982788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.93460845947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.94686126708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.75495910644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.25067138671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.81298065185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.010009765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.95336151123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.79283142089844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.99335479736328, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.00460815429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.8249740600586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.1865005493164, \"water_flow\": 450.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.0040283203125, \"water_flow\": 442.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.19320678710938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.24618530273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.03521728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.8553237915039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.10265350341797, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.90095520019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.20781707763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.9886474609375, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.5660400390625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.09088134765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.02810668945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2038116455078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.54286193847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.39402770996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.06497192382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.82318115234375, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.88217163085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.65692138671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.08404541015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9031982421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.77508544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.96149444580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.3753433227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.25128936767578, \"water_flow\": 140.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.7342300415039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.5887451171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.57693481445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.27654266357422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.77915954589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.87849426269531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.5356216430664, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.42051696777344, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.4563217163086, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.70789337158203, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.49556732177734, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.30089569091797, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.55565643310547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.90265655517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.31550598144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.58342361450195, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.02367401123047, \"water_flow\": 843.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.95402145385742, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.6122817993164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.36470031738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.70037841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.56947326660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.4732666015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.0036735534668, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21159.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 117.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.051666259765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.53596496582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.79053497314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.1943588256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.84428405761719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.88909912109375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.86187744140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.5730972290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.97709655761719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.64860534667969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.62332153320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.50274658203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.83467864990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.18305206298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.53910827636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.79739379882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.11311340332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.10914611816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.02459716796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.40409851074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.69915008544922, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.10110473632812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.72655487060547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.63357543945312, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.12080383300781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2881851196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.5416259765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.20437622070312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.92252349853516, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.76873779296875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.57960510253906, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.15730285644531, \"water_flow\": 888.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.62477111816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.31245422363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.83616638183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.00930786132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.3728256225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.94493103027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.66838836669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.63512420654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.55274200439453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.57241821289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.53267669677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97311401367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.9504165649414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.57953643798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.90182495117188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.07072448730469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.08100891113281, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.17231750488281, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.12551879882812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.43370819091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.71066284179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7253875732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.41761779785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.18663024902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.52666473388672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.61647033691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.57530212402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.32290649414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.35130310058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.50433349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.61791229248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.68163299560547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.55548858642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.32341003417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.62342834472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.77513885498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.320167541503906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.48963928222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.244049072265625, \"water_flow\": 1548.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.65762710571289, \"water_flow\": 2655.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.23909378051758, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.60457992553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.48179626464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.009891510009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.368194580078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 2556.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.39682388305664, \"water_flow\": 2516.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.754844665527344, \"water_flow\": 2515.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.240020751953125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24710464477539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.009071350097656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.9845085144043, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.6470718383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.92296600341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.51395416259766, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.69283294677734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.01071166992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.02418518066406, \"water_flow\": 2343.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.55533599853516, \"water_flow\": 2172.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.68241882324219, \"water_flow\": 2170.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.85901641845703, \"water_flow\": 2167.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.96714782714844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.05489349365234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.15277862548828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.47381591796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.83592987060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.95733642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.24497985839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.93228149414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.45408630371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.90399169921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.53209686279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.90081024169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.43521118164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.55050659179688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.31471252441406, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.1137466430664, \"water_flow\": 423.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.81796264648438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.36788177490234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.604736328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.80418395996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.71754455566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.51123809814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.95466613769531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.3287124633789, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.06678009033203, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.11351776123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.67996215820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.39655303955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.61367797851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.23328399658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.91705322265625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.14803314208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.49556732177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.75061798095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.15522003173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.08765411376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.79010772705078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.36286926269531, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95252990722656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95352172851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.51030731201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.51409149169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.46165466308594, \"water_flow\": 436.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.74356842041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.19782257080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.06137084960938, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.63890075683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.49864196777344, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.48118591308594, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.64430236816406, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.72711944580078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2101821899414, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.42030334472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.62550354003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6878204345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.48179626464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.58969116210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.60911560058594, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.46446228027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.06292724609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.42657470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0965118408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.34963989257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.22959899902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.19267272949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.25713348388672, \"water_flow\": 135.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.03351593017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.84610748291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.58760070800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.368896484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2428970336914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.970458984375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.72225952148438, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.03128051757812, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.54296112060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.73384094238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.83869171142578, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.20870971679688, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.1085433959961, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.9912109375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.19573974609375, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.73622131347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.50621795654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.2231330871582, \"water_flow\": 852.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.50777053833008, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.24488830566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.7626724243164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.70417785644531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.208377838134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.44602584838867, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20991.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 116.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.073486328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.09722900390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.12215423583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.47378540039062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.03421020507812, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.94264221191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.41622924804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.6705093383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.13233184814453, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.2311782836914, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.53424835205078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.80706024169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.17842864990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.67414855957031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.2569351196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.34504699707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.69699096679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.01260375976562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.31805419921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.80847930908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.23883819580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.9862289428711, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.42088317871094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.56497192382812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.0562744140625, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.99177551269531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.2960205078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.05652618408203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.78720092773438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.22142028808594, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.78657531738281, \"water_flow\": 908.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.53597259521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.13470458984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.04158782958984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.87844848632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.61871337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.19482421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.34807586669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.39319610595703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.8856201171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2806396484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.14321899414062, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.49202728271484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.65162658691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.57870483398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.22315979003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.10887145996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.5965347290039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.86259460449219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.84402465820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.24500274658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.85641479492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.61638641357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.91056823730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.46665954589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3271484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.93070983886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.27069091796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.99298858642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.90767669677734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.91250610351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.66696166992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.10515594482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.37905883789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.94338989257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.06021881103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.77606201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.31792449951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.20587921142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.29681396484375, \"water_flow\": 1527.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.240074157714844, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.248924255371094, \"water_flow\": 2651.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.99197006225586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.17021942138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.340904235839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.31641387939453, \"water_flow\": 2570.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.6314582824707, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.63601684570312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.885986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.44725799560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.70829010009766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.86319732666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.78945922851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.06978607177734, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.68929290771484, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.79663848876953, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.95126342773438, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.02415466308594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.97066497802734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.15499877929688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.16455841064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.345458984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.44468688964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1506118774414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.61641693115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.13335418701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.64765167236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.52228546142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.15450286865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.33827209472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.6628189086914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.6257553100586, \"water_flow\": 408.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.75894165039062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.10543823242188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.13579559326172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.64369201660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.97794342041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.13936614990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1314468383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.057373046875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.46338653564453, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.85819244384766, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.31034088134766, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.58522033691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.41446685791016, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.51215362548828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.4449462890625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.16879272460938, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.25537872314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.5173568725586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.2449722290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.97494506835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.50738525390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.76233673095703, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.9423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.2833251953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.5937271118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.78956604003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.84236907958984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.53360748291016, \"water_flow\": 428.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.81092071533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.00919342041016, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.24893188476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.52687072753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.02061462402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8426742553711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.28888702392578, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.99726867675781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.79759216308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.88119506835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.02877807617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0386199951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.7665252685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.4288330078125, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.82713317871094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.57432556152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.83306884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.04202270507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7532958984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.23180389404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.20552825927734, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.39392852783203, \"water_flow\": 107.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.46429443359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.43866729736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.10895538330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.4465560913086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.6435317993164, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.00430297851562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.9639663696289, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.08439636230469, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.1958999633789, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.33284759521484, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.45088195800781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.19964599609375, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.13462829589844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.86965942382812, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.01873779296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.9355239868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.6530990600586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.1430435180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.137271881103516, \"water_flow\": 1028.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.15073776245117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.21805191040039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.110965728759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.23160171508789, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05078125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20965.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 115.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05070495605469, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.5077018737793, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.43157196044922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.027862548828125, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.31108093261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.23500061035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.59636688232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.48774719238281, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.93277740478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.23239135742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.50416564941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.1882095336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2036361694336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.69170379638672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.56278228759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.39106750488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.32258605957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.26070404052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.1938247680664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11425018310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.45751190185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.29832458496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.77381134033203, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.28595733642578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.09410095214844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.20094299316406, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.11872100830078, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.48023223876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.92781066894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.04911041259766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.54952239990234, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.64025115966797, \"water_flow\": 927.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.7809829711914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.83416748046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.89163970947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.36282348632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.05741882324219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.86353302001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.19575500488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.35281372070312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.25933074951172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.17047882080078, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.40615844726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.65754699707031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.44158172607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.96443939208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.9091567993164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.27007293701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1392059326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.90773010253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.35172271728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.7262954711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.45533752441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.78575134277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.62061309814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8394546508789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.24397277832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.85326385498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.1801528930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8132553100586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.85076141357422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.63650512695312, \"water_flow\": 208.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.87622833251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.5896987915039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.12968444824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.1543960571289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.54322814941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.16690826416016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.90315246582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.331504821777344, \"water_flow\": 1509.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24169921875, \"water_flow\": 2646.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.06486892700195, \"water_flow\": 2581.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.43064498901367, \"water_flow\": 2579.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24046325683594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.46303176879883, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.57723999023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.76904296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.97425079345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.5372085571289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.74898529052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.18487548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.68531036376953, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.10442352294922, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.24691009521484, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.6838150024414, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.52519989013672, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.14301300048828, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.47904968261719, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.50894927978516, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.16173553466797, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.2256088256836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.26917266845703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.83909606933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.13082885742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.7625503540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.47007751464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.43252563476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.80855560302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.03658294677734, \"water_flow\": 400.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.58562469482422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.89142608642578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.52027130126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.65766143798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.0185775756836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.40077209472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.65660858154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.2599868774414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.72588348388672, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.82123565673828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.4256820678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.49217987060547, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.72119140625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.43490600585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.44564819335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.60738372802734, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.90704345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.87773895263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.0456314086914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.93256378173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.49671936035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.39095306396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.46887969970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.73463439941406, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.16707611083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.937255859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.16905212402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54084014892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.91893768310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.03496551513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.34626770019531, \"water_flow\": 423.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.75189208984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.20166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.78956604003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.91513061523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.03225708007812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.49095153808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.58262634277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6488800048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.87673950195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.5623016357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.40472412109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.3320770263672, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.67938232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.28054809570312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.58250427246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.72509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.18267822265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.9726791381836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.87516784667969, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.1603012084961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97735595703125, \"water_flow\": 100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.24803924560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.05415344238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.41493225097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.6135025024414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.32341003417969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.05156707763672, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.63573455810547, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.64936065673828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.75361633300781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.89295959472656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.19839477539062, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.91567993164062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.87834930419922, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.60792541503906, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.13832092285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.14718627929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.98436737060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.90711212158203, \"water_flow\": 171.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.97072982788086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.42527770996094, \"water_flow\": 1033.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.84212112426758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.299312591552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0633430480957, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20937.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 114.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07993698120117, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.13529586791992, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.17454147338867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.63005065917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.22032165527344, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.9095230102539, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.39547729492188, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.7781753540039, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.86359405517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.88697814941406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.7640151977539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.30107879638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.19654846191406, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.89871978759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.2736587524414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.25040435791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.42674255371094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.47626495361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.03883361816406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.14474487304688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.68141174316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.47393035888672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.77095031738281, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.0075454711914, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.558837890625, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.80442810058594, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.99771118164062, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.51515197753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.84759521484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.23873901367188, \"water_flow\": 953.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.90319061279297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.78057098388672, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.16143798828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.974853515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.37155151367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.06995391845703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.53607940673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.405517578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.22747039794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.5199966430664, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.80464172363281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.53053283691406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.43794250488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.72053527832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.57698822021484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.03999328613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.81590270996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0299072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.23269653320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1226043701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.55384063720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.34889221191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.70148468017578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.49266815185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9948959350586, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.62319946289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.58901977539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.24520111083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.67723846435547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.1967544555664, \"water_flow\": 214.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.83907318115234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.3320541381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0524673461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.85806274414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.45339965820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.76248931884766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.7792739868164, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.676204681396484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24003982543945, \"water_flow\": 1496.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.26195526123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.62336730957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.63401794433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.9723892211914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.21157836914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.13121795654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.23490905761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.94287872314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.0966796875, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.46784210205078, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.55662536621094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.76103973388672, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.65072631835938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.29232025146484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.76506042480469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.14976501464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.92426300048828, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.85264587402344, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.6935043334961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5412368774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.25988006591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.59026336669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.73273468017578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.17240905761719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.31710815429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.66307067871094, \"water_flow\": 394.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.93843078613281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.42454528808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.4168701171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.21663665771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.46077728271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.85130310058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.36238098144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.41905212402344, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.57778930664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.09234619140625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.76817321777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.77157592773438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.56956481933594, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.89146423339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.90162658691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.49468994140625, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.51173400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.10602569580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.98210144042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.24320220947266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.81038665771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.26914978027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.38116455078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.23466491699219, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.65763092041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.59329986572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.42436218261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.09526824951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.16181945800781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.6944580078125, \"water_flow\": 372.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.72315216064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.26370239257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6876220703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8167266845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.05711364746094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.69754028320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6023712158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.91632080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.26611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.68138122558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.46022033691406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.30967712402344, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.15048217773438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.16917419433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.5360565185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.320556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7424774169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.40184020996094, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.93242645263672, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.2565689086914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.8078842163086, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.01197052001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.82514953613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.06344604492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.95865631103516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.15481567382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.90393829345703, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.63353729248047, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.24756622314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.950439453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.04139709472656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.58021545410156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.35072326660156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.88456726074219, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.58684539794922, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.55067443847656, \"water_flow\": 143.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.95683288574219, \"water_flow\": 155.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.23192596435547, \"water_flow\": 158.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.88187026977539, \"water_flow\": 169.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.182403564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.95207595825195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.46339797973633, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.423099517822266, \"water_flow\": 1034.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.91112518310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05248260498047, \"water_flow\": 20715.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 203.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.51896667480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.88944625854492, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.90424728393555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.59521484375, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.61576080322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.97753143310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.09833526611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.5466537475586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.04283905029297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.34749603271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.26832580566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.40947723388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.76377868652344, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.24850463867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.02649688720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.57526397705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.45173645019531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.63491821289062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.22005462646484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.54855346679688, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.88697052001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.39635467529297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.509033203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.59512329101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.16832733154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.97937774658203, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.67729949951172, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.59667205810547, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.73436737060547, \"water_flow\": 961.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.5201187133789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.84798431396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.64888000488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.30023193359375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.82818603515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.69562530517578, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.02546691894531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.85991668701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.1390609741211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.2290267944336, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.49443817138672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.55722045898438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.55074310302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.01809692382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.76338195800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.93358612060547, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.4325180053711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.10480499267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.98687744140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.32282257080078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85794067382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.78559112548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.7883071899414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.93772888183594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.8901138305664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.75990295410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.50507354736328, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.62478637695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.50740814208984, \"water_flow\": 232.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.36732482910156, \"water_flow\": 224.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.7921142578125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.57052612304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.42689514160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.38887786865234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.55936431884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.3308334350586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.3781967163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.48666381835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.33668899536133, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 1477.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.249168395996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.113887786865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.4910659790039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.67598724365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.48370361328125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.88961029052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.95014953613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.12246704101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.19611358642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.39723205566406, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.79666900634766, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.84083557128906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.72068786621094, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.05628967285156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.4251480102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.13825988769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.7605209350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.27166748046875, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.91893005371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.96746063232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.97652435302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.74190521240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.03368377685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.5631332397461, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.44674682617188, \"water_flow\": 388.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.27389526367188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.3036117553711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.99008178710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.59677124023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.8463363647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.89156341552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.69400787353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.94951629638672, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.15750885009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.86640930175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.79301452636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.97779846191406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.12297058105469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.74742126464844, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.52970886230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.82389068603516, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.73883819580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.87018585205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.39210510253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.45057678222656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.34071350097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.44668579101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.52969360351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.00193786621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.11251068115234, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.47421264648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.91278839111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.4494400024414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6880874633789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.30915832519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48512268066406, \"water_flow\": 365.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.80020141601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.16958618164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.84307861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.22654724121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1214141845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.00625610351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1616668701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1230010986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.14144897460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.5941925048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.60455322265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.28948974609375, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.999755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.83460998535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.52964782714844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.30650329589844, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5343780517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.10348510742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4621810913086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.61456298828125, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.14952850341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.83541870117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.23775482177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.33960723876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.29133605957031, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.45423126220703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.4186019897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9395980834961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.4512939453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.98318481445312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.9078598022461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.99485778808594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.67633056640625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.20457458496094, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.19422149658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.83589935302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.10139465332031, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.12683868408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.2625961303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.66515350341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.34782028198242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.82780075073242, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.98246765136719, \"water_flow\": 1035.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.056556701660156, \"water_flow\": 19642.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 202.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 112.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.63209533691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.432498931884766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.72673416137695, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.98612213134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.38928985595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.58654022216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.7555160522461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.17530059814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.91326141357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.06607055664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.35834503173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.41974639892578, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.00008392333984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.52906799316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.83840942382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.74390411376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.58724212646484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.34171295166016, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.94275665283203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.80411529541016, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.23059844970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.48390197753906, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.87115478515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.7680435180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.59000396728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.42476654052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.03717803955078, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.1985855102539, \"water_flow\": 999.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.45985412597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.35047149658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.55657958984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.57161712646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.56648254394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.01952362060547, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.33924865722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.33676147460938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.49748229980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.54144287109375, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.14610290527344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.13585662841797, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.55813598632812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.57490539550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.51258087158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.8680419921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.01361083984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.20023345947266, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.15672302246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.7642593383789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.63453674316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.34626007080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.64398956298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.6866226196289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.56964874267578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.48509216308594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.23505401611328, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.40217590332031, \"water_flow\": 99.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.85228729248047, \"water_flow\": 233.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.93159484863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.80120086669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.37272644042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8383560180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.93592071533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.5899429321289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.9443130493164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.85270690917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.51972961425781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.271240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.30887985229492, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 947.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 527.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24000930786133, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.35543441772461, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.413658142089844, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.52902221679688, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.96834564208984, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.71771240234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.70448303222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.34434509277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.1512680053711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.28409576416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.35304260253906, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.54304504394531, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.64459991455078, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.53822326660156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.53211212158203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.522216796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.53314971923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.62853240966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.5746078491211, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.8825912475586, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.12849426269531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.88673400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.94500732421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.77995300292969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.22626495361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.27003479003906, \"water_flow\": 369.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.33881378173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8128890991211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5320281982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.70974731445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7608642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.38839721679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.54175567626953, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.92048645019531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9324493408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.75186157226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.64913940429688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2559051513672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.95932006835938, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.07154846191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.10857391357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0791244506836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.77154541015625, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.36406707763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.6810531616211, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.27861785888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.3589096069336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.85008239746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.27906799316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.0118637084961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.55741119384766, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.73120880126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.6304702758789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.42420196533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.35279846191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.85763549804688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.85596466064453, \"water_flow\": 360.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31118774414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.5922393798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.839111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.9557647705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.59132385253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0546112060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4273681640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.39715576171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.61264038085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.44650268554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.24444580078125, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.16824340820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.64805603027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.31536865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6965789794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6401824951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.95361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.85272216796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.03849029541016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.87543487548828, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.97466278076172, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.15446472167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.21279907226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.70365905761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.66244506835938, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.74359893798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.44192504882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0142059326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0615234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.32156372070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.50460815429688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.45809936523438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.06532287597656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.56488800048828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.35221862792969, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.8960189819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.20687103271484, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.23926544189453, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.00383758544922, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.64564895629883, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.48381805419922, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.53173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.750675201416016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.73262023925781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.058319091796875, \"water_flow\": 19619.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 201.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05987548828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.23974609375, \"water_flow\": 111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.68049240112305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.114871978759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.8267822265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.57825469970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.36803436279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.8708724975586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.54566955566406, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.55401611328125, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.75210571289062, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.06459045410156, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.34149169921875, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.50885009765625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.40592956542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.19577026367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.87690734863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.16436767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.22333526611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.93058013916016, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.82416534423828, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.48468780517578, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.52981567382812, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.27104949951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.63095092773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.95025634765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.47525787353516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.08121490478516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.06220245361328, \"water_flow\": 1034.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.52533721923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.83573150634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.00855255126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.63037109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.15208435058594, \"water_flow\": 334.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.630126953125, \"water_flow\": 323.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.8294906616211, \"water_flow\": 320.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.99272918701172, \"water_flow\": 314.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.54865264892578, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.905029296875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.30764770507812, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.89640808105469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.76807403564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.26364135742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.12867736816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.5387191772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.24527740478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.26798248291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.08262634277344, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.68980407714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.83204650878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.73313903808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.06916046142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.23106384277344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.34651184082031, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.81583404541016, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.01421356201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.45613098144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.20719146728516, \"water_flow\": 346.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.54930877685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.48857116699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.26813507080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.16948699951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.80945587158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.09807586669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.55016326904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.25765228271484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.36036682128906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.544898986816406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.67715072631836, \"water_flow\": 917.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 526.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.278568267822266, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.0992317199707, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.4671630859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.83953094482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.8881607055664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.01879119873047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.52485656738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.086181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.55793762207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.4356918334961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.11973571777344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.5416259765625, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.32017517089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.15038299560547, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.62503814697266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.68180847167969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.04633331298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.36771392822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8835220336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.10386657714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.72102355957031, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.97946166992188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.77938842773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.85314178466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4442367553711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.20372772216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.16156768798828, \"water_flow\": 364.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.5135269165039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.06731414794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.5779571533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.03219604492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.48211669921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.08840942382812, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.85720825195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.73768615722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.46539306640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.94200134277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.1175537109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.36434936523438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.48622131347656, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.47996520996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.239990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.67571258544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.85270690917969, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.63673400878906, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48326110839844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.38428497314453, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.98521423339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.35562133789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.965576171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.10897827148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.01563262939453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.70684814453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.19387817382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.9962387084961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.76754760742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.54691314697266, \"water_flow\": 332.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.69647979736328, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35486602783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.74720764160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.47848510742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.91485595703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4335174560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.613525390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.1734161376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.63150024414062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7460479736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.4214630126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0772247314453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5387420654297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6754913330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.04190063476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.19383239746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6954803466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.03860473632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.16976928710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.99129486083984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.93162536621094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.51905822753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.67057037353516, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.22809600830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.96764373779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.921630859375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.95556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.23118591308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.25250244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.47308349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.09942626953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.05776977539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.05272674560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.94068145751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.5995864868164, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.67866516113281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.5924301147461, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.93162536621094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.81986236572266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.00799560546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.58679962158203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.5624885559082, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.846744537353516, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.29418182373047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.37301254272461, \"water_flow\": 19470.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050010681152344, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 120.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 200.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.30918502807617, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.143707275390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.457115173339844, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.9491081237793, \"water_flow\": 100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.35224914550781, \"water_flow\": 94.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.335689544677734, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.86649322509766, \"water_flow\": 80.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.40681457519531, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.88265991210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.19231414794922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.56867218017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.9469985961914, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.95938110351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.50391387939453, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.2833251953125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.42749786376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.13506317138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.04049682617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.960205078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.33258056640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.08860778808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.60370635986328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.27600860595703, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.38591003417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.6850814819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.7423095703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.8686752319336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.53250885009766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.39215850830078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.95657348632812, \"water_flow\": 1037.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.03610229492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.18940734863281, \"water_flow\": 346.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.7349853515625, \"water_flow\": 343.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.40267944335938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.46651458740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.22525024414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.44126892089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.69356536865234, \"water_flow\": 277.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.9046401977539, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.38034057617188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.64347076416016, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.0759048461914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.56189727783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.2025146484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.356201171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0789566040039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.60774230957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.16486358642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.38671112060547, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.84628295898438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.25487518310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.03401184082031, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.13420867919922, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.03253936767578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.96122741699219, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.92546844482422, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.96661376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.97264862060547, \"water_flow\": 349.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.59991455078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.85692596435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6501950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.98418426513672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.44750213623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.81788635253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.20655059814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.95188522338867, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.986541748046875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.03559112548828, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24668502807617, \"water_flow\": 879.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 525.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.432090759277344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.930946350097656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.49761962890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.82640075683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.75933837890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.31539916992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.35494232177734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.96627044677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.47010803222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.24655151367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.7146224975586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.47663116455078, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.26962280273438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.58684539794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.3666763305664, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.24512481689453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.8867416381836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.97364044189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.86884307861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.639404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.84029388427734, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.42061614990234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.96513366699219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.01470184326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.25222778320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.37442016601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.87258911132812, \"water_flow\": 361.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.78182983398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.23112487792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6443328857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9420623779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.79739379882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.81570434570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.9662322998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.71669006347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.3546600341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.96849060058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6341552734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0792694091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.38282775878906, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.53382873535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1727294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0220184326172, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.47607421875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6288833618164, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48295593261719, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.49578094482422, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.49433135986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.57884979248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.43858337402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.61343383789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.98600769042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.30327606201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.47272491455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.42195129394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.37104034423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.20574951171875, \"water_flow\": 325.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.57879638671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.13199615478516, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.87677001953125, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.04353332519531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.79568481445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9658966064453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.56044006347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.80880737304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.00242614746094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.666748046875, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.44354248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.74014282226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.53636169433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5318603515625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.97186279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6988983154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.32077026367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6028594970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8587646484375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.25116729736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.68324279785156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.16961669921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.20758819580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.56063842773438, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.7869873046875, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.334716796875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1405792236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0531463623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.62709045410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.57196044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.15184020996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.4832992553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.29104614257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.24103546142578, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.48623657226562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.92776489257812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.64717864990234, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.56918334960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.75878143310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.97341918945312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.81255340576172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.398216247558594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.993221282958984, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.05096435546875, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.15166473388672, \"water_flow\": 19356.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 119.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 199.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.87725067138672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.12731170654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.07682037353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.68607711791992, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.685157775878906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.1925277709961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.73683166503906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.10089111328125, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.74516296386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.61624908447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.63379669189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.79275512695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.8997802734375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.39796447753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.98804473876953, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.80657196044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2669448852539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.4248275756836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.10448455810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.19041442871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.39059448242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.24959564208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.19664764404297, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.96479034423828, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.8281478881836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.84114837646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.08372497558594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.94090270996094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.02074432373047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.47803497314453, \"water_flow\": 1395.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.73422241210938, \"water_flow\": 349.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.40818786621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.17406463623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.33731079101562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.55237579345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.30375671386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.89046478271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.1380615234375, \"water_flow\": 230.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.15193939208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.59443664550781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.78751373291016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.10807037353516, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.34026336669922, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.4605941772461, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.20474243164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.57109069824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.05084228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.26966857910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.32766723632812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.34356689453125, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.15684509277344, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.69567108154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.8218765258789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.35665130615234, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.43792724609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.84732055664062, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.17986297607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.94007873535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.95616912841797, \"water_flow\": 354.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.33285522460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.62665557861328, \"water_flow\": 422.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.38030242919922, \"water_flow\": 429.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.6163558959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.35775756835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.17814636230469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.21259307861328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.10322952270508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.96388244628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.268524169921875, \"water_flow\": 861.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 524.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.842281341552734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.66837692260742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.52896118164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.96177673339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.73445129394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.98148345947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.54690551757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.12840270996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.31900024414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.33824157714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.78961944580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.93927001953125, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.4036865234375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.88392639160156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.63399505615234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.97694396972656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.15381622314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.99400329589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.61370086669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.33195495605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.3143539428711, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.08638000488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.14584350585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.65216064453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6169662475586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.0929946899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.5623779296875, \"water_flow\": 358.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.74469757080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.33556365966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.47309112548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7626190185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.94515991210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.176513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.57435607910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.64122009277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8259735107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.40342712402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3036346435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.3068084716797, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.40164184570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4203338623047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0833282470703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3935089111328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.5673599243164, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.75785827636719, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.83218383789062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9487075805664, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.26302337646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.96273803710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.07856750488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.62279510498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.27926635742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.63912200927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.93325805664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.4123764038086, \"water_flow\": 321.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.04704284667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.19796752929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.6500473022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.42974853515625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.939453125, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.51234436035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.88189697265625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5370635986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.3002166748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.19459533691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1687469482422, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9987030029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.63497924804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.03285217285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6097869873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.23362731933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2460174560547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.67054748535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.40296936035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.44107055664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.04112243652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.32686614990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.02313995361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.82752990722656, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.79914855957031, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.62614440917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.9647216796875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4307403564453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.87225341796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.01480102539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.92144775390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4083709716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35762786865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.42280578613281, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.74116516113281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.81137084960938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.31278991699219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.79518127441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.49662780761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.53289031982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.54219818115234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.56607055664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.639190673828125, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.81602478027344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.673179626464844, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.15230178833008, \"water_flow\": 19246.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 118.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 198.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.186744689941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.5655746459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.68885040283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.03921508789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.00640869140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.04757690429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.15142059326172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.52421569824219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.02228546142578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.36100006103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.84668731689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.5241470336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.9094009399414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.86958312988281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.50187683105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.0106430053711, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.0634765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.19845581054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.80996704101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.63873291015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.86302185058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.76237487792969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.23136138916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.38920593261719, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.56298065185547, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.62551879882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.34105682373047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.74475860595703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.45941925048828, \"water_flow\": 1417.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.28720092773438, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.62236022949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.9685287475586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.00843811035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.58284759521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.83079528808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.89600372314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.83574676513672, \"water_flow\": 226.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.31637573242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.77900695800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.07962799072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.36677551269531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.47557830810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.0821762084961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.5263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.37271118164062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.87042236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.82198333740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.09883880615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.8365707397461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.16826629638672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.00005340576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1265640258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.8963623046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.68766784667969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.27826690673828, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.65105438232422, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.62433624267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.05867004394531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.8219985961914, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.97518157958984, \"water_flow\": 418.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.29667663574219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.99628448486328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.88587951660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.02743530273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.4409408569336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.41343307495117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.115867614746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.23993682861328, \"water_flow\": 827.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24362564086914, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 523.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.240135192871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.27821350097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.944400787353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.50942993164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.42105102539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.47215270996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.92536163330078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.41659545898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.86769104003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.38796997070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.88703155517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.32892608642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.96755981445312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.48926544189453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.0417709350586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.73210906982422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.76654052734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.79304504394531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.83645629882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.72932434082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.6929931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.33153533935547, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.91173553466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9219741821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6609878540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.35850524902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2947006225586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.26464080810547, \"water_flow\": 332.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.6351547241211, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.90328216552734, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.56318664550781, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.95693969726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.753173828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.87046813964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.6471710205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.57740783691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.32444763183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2022705078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.92457580566406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1251220703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.51055908203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.90203857421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.92074584960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.03787231445312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.61824035644531, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0630874633789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.24517822265625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48006439208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4803237915039, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.69715881347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.37705993652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.57098388671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.10680389404297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.28844451904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.95702362060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.58570861816406, \"water_flow\": 299.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.96434783935547, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.80303955078125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.12429809570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.13572692871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.59207153320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.13813018798828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.07246398925781, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7400360107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.98635864257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1981964111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.26121520996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.50587463378906, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.30767822265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.9049530029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.2390899658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5389862060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.03378295898438, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.33392333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.76080322265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.20233154296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0600128173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.81958770751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.7635269165039, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.1310043334961, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.11563110351562, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.89698028564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.18380737304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.24288940429688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.02352905273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.22512817382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3749237060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.44602966308594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.511962890625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9730224609375, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.97457885742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.2096939086914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.8962173461914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.60989379882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.97198486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.58064270019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.39714813232422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.23400115966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.94140625, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.04650115966797, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.77763366699219, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.8397331237793, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.50447082519531, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19214.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 117.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 197.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.761932373046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.54418182373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.5902328491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.59947967529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.95431518554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.46363830566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.39807891845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.26692962646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.50177001953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.64051055908203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.31282806396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.47144317626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.90869903564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00699615478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.60456085205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.1304702758789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.82831573486328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.39079284667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.69583129882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.1364974975586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.35934448242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.00067901611328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.61625671386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.2997817993164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.56732177734375, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.63040161132812, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.38233184814453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.37907409667969, \"water_flow\": 1430.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.37786865234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.12349700927734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.6111068725586, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.02613067626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.41715240478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.53135681152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.41517639160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.13707733154297, \"water_flow\": 219.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.98657989501953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.70553588867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.12079620361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.4671630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.70975494384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.42031860351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.7129135131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.3587646484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.7737808227539, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.32115936279297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.76973724365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.17564392089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.35536193847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.19731903076172, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.90699005126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.3671646118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.05339050292969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.00596618652344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.28025817871094, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.46955108642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.1750717163086, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.50936889648438, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.40769958496094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.90052795410156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.17935180664062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.2265853881836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.37261199951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.66619873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.08744812011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.728736877441406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.51812744140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.484256744384766, \"water_flow\": 805.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.36028289794922, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 522.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24016189575195, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.69991683959961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.93470764160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.22569274902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.92985534667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.3923110961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.79890441894531, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.9371337890625, \"water_flow\": 474.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.74641418457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.55885314941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.23162841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.10352325439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.56544494628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.91289520263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.3661880493164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.66773223876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.79121398925781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.56444549560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.33563232421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8655014038086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.98282623291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.40415954589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.80265808105469, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.90469360351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.33329010009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.15233612060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.37844848632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.27332305908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.87493133544922, \"water_flow\": 327.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.31739807128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.06172180175781, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.9183578491211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.21775817871094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.71067810058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6896514892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.36802673339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7031707763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.0085906982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.91673278808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4967803955078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.928466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.11143493652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.95166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.41329956054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.59910583496094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.28764343261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.01693725585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.65995788574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.39695739746094, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48023986816406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48013305664062, \"water_flow\": 118.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9087905883789, \"water_flow\": 125.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.96367645263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.3748779296875, \"water_flow\": 196.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.99322509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.98027038574219, \"water_flow\": 293.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.87873077392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.39422607421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.07584381103516, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.00122833251953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.27433013916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.30775451660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.15251922607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85026550292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.47917175292969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.0525894165039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.31488037109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.92698669433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.37484741210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6668243408203, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3931121826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.99415588378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.25616455078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.96377563476562, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.78688049316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1064453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6776580810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.44341278076172, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.23278045654297, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.91322326660156, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.80135345458984, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.76685333251953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.8087158203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.75819396972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5821533203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.68267822265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.597412109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.86532592773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.75347900390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.5879898071289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.64107513427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.48573303222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.89183807373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.47264862060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.82005310058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.98347473144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.73551940917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.19326782226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.17277526855469, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.56307220458984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.65142059326172, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.59357452392578, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.37674331665039, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.57610321044922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.056522369384766, \"water_flow\": 19190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 116.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 196.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.051109313964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08413314819336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05183792114258, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07872772216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05156326293945, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08260726928711, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.99350357055664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.63252258300781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.04706573486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.09471130371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.18754577636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.9504165649414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.78655242919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.0176010131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.14534759521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.68537902832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.29234313964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.50798034667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.00338745117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.63235473632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.64971160888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.44020080566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.19461059570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.61945343017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.76519775390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.8640365600586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.07732391357422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.8408203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.13262939453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.141357421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.54106140136719, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.27560424804688, \"water_flow\": 1492.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.82838439941406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.23653411865234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.89180755615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.75938415527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.30826568603516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.5857925415039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.59427642822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.09896087646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.6473159790039, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.02198791503906, \"water_flow\": 201.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.52439880371094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.7433090209961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.26030731201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.70069885253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.11283111572266, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.60791778564453, \"water_flow\": 109.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.1253890991211, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.88981628417969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.58695983886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.32762145996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.27413940429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.72016143798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.35103607177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.14643859863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.38845825195312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.04093170166016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.65235900878906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.53264617919922, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.24761962890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.35243225097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.54619598388672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.41226196289062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.11395263671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.6566390991211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.78096008300781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.28759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.29789352416992, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.41811752319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.57926559448242, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.98893356323242, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.702430725097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.8868522644043, \"water_flow\": 783.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 521.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24395751953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.400081634521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.56439971923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.03019332885742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.87610626220703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.6418228149414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.53376007080078, \"water_flow\": 485.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.1265640258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.4703598022461, \"water_flow\": 473.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.72688293457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.48433685302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.3928451538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.5160140991211, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.34161376953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.4085693359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.48017120361328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.90377807617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.22699737548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.56576538085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.4023666381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.5580062866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.74862670898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.46038818359375, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.88058471679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.60982513427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.219970703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.53610229492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.12590789794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.5243911743164, \"water_flow\": 322.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.2396011352539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.42061614990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.61381530761719, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.96682739257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7323455810547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.62770080566406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.80894470214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.8184814453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.16891479492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.6145782470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.74459838867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.18333435058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.40269470214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6011505126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.07965087890625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6632537841797, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6451873779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.14863586425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.04280090332031, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.02079772949219, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.01765441894531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.64079284667969, \"water_flow\": 189.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.54556274414062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.40817260742188, \"water_flow\": 286.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9601058959961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.70475006103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.0947036743164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.30167388916016, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.32608032226562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.45352935791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.18876647949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.07121276855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.61686706542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.79886627197266, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.05610656738281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.30369567871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0254669189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.9133071899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.54055786132812, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.32390594482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.59349060058594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.75405883789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.8072509765625, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.94757080078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.66184997558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9739990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.76318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.79408264160156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.98831176757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.22470092773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.08837890625, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.76988220214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.90045166015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.83975219726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.10792541503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.44200134277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.1663055419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4281005859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6271514892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.32081604003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.18740844726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.94656372070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9051742553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.94189453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.22586822509766, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.8871841430664, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.81987762451172, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.89706420898438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.56143951416016, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.47592163085938, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.41561508178711, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.37904357910156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.210235595703125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.243186950683594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05097961425781, \"water_flow\": 19178.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 115.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 195.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.10433578491211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.766727447509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.08955764770508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.21845245361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.3713493347168, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.702152252197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.05239486694336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.83622360229492, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.7549819946289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.77279663085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.049072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.04912567138672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.24234008789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.7670669555664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.0820541381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.77256774902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.27106475830078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.50733947753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02023315429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.00572967529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.26632690429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.51615142822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.59857177734375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.91751098632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.57472229003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8521957397461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.42231750488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.04988098144531, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.54167938232422, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.85304260253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.85871887207031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.81689453125, \"water_flow\": 1520.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.78435516357422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.81442260742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.5605239868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.33586120605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.5089111328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.90937042236328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.22899627685547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.9789047241211, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.12704467773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.3409194946289, \"water_flow\": 198.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.9011459350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.97505950927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.08138275146484, \"water_flow\": 122.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.59258270263672, \"water_flow\": 118.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.11758422851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.8736343383789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.58580017089844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.39498901367188, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.28750610351562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.6700668334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.44621276855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.07028198242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.37503814697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.7819595336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4645004272461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.56509399414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9894027709961, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.29287719726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.50325775146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.83465576171875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.83002471923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.4883804321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.21125793457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.8284912109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.02511596679688, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.28388214111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.17298126220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.767189025878906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.42247009277344, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.05540466308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.55405044555664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.006690979003906, \"water_flow\": 763.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24015426635742, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.42030715942383, \"water_flow\": 520.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.93214797973633, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.53659439086914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.93046188354492, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.41259765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.10722351074219, \"water_flow\": 487.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.95059967041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.4679183959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.5252914428711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.49496459960938, \"water_flow\": 467.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.18705749511719, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.37316131591797, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.63469696044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.07733154296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.84454345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.7477035522461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48367309570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.37226867675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.56089782714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.47161102294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7754898071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.36125183105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5903091430664, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.25480651855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.70621490478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.94711303710938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.20513153076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.43610382080078, \"water_flow\": 319.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.39102935791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.75862121582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.66507720947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.96561431884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.69227600097656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.67530822753906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.83563232421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.7251739501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7829132080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.68605041503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.99700927734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4718475341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.26600646972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.0282745361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.83802795410156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.77719116210938, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.3582305908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.19771575927734, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.0588607788086, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.90316772460938, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.904541015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.2300796508789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.55918884277344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48149871826172, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.77860260009766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.15857696533203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.14095306396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.93526458740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.14959716796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.31289672851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.3166275024414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.19368743896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.18016052246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8429946899414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.96676635742188, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.81346893310547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.74748229980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.40391540527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.16974639892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.9015884399414, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.13689422607422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6592559814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.51470947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.38070678710938, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.648193359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.1168975830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.08285522460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9136199951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.05718231201172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.56330108642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.86656188964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7329559326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.25765991210938, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.8103485107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2401580810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.13194274902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.44822692871094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.160888671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.9812774658203, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.30862426757812, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.33358764648438, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.65171813964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.44120025634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.1168441772461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.07034301757812, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.35308837890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.77293395996094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.94685363769531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.68923950195312, \"water_flow\": 85.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.68306732177734, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.9568099975586, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.48096466064453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.4235610961914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.74331283569336, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.62754821777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.19969940185547, \"water_flow\": 19161.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 114.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 194.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05491256713867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.153106689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.37263870239258, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.896121978759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.048091888427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.127994537353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.188026428222656, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.363834381103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.82806396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.64380645751953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.29920959472656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.82604217529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.15795135498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.43447875976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.97135925292969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.58451080322266, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.07412719726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.90357971191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6443862915039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.10159301757812, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.29045867919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.56512451171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.40927124023438, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.9076156616211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.44998931884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.80413055419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.88746643066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.03233337402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.1641616821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.74234771728516, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.21226501464844, \"water_flow\": 1553.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.1686782836914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.03591918945312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.53925323486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.7690658569336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.82199096679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.47055053710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.3728256225586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.02751922607422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.37277221679688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.22282409667969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.61510467529297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.45174407958984, \"water_flow\": 189.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.71971893310547, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.6723861694336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.79202270507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.19171905517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.28614044189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.94617462158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.85356140136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.64934539794922, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.7635726928711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.3248291015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.39897918701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.98358917236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.54601287841797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.76860046386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.71379852294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9937973022461, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.28482818603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.87374114990234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.58341979980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.30773162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.78435516357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.6039810180664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.80139923095703, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.13133239746094, \"water_flow\": 100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.09288787841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.80809783935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.689144134521484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.22734832763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.06766128540039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.1629638671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.09980010986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.464866638183594, \"water_flow\": 758.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.36260986328125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.75722885131836, \"water_flow\": 519.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.76277160644531, \"water_flow\": 495.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.44738006591797, \"water_flow\": 491.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.866737365722656, \"water_flow\": 488.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.25184631347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.44109344482422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.32400512695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.82592010498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.15103912353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.44738006591797, \"water_flow\": 447.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.50023651123047, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.83306121826172, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.91627502441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.50434875488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.56437683105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.75859832763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.41661071777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.24705505371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.25896453857422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.04720306396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.7187728881836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.97120666503906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.80693054199219, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.7233657836914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.93550872802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.48193359375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.50341796875, \"water_flow\": 246.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.9272689819336, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.72235107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.77413940429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.40709686279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.30142211914062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2900848388672, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.9291534423828, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.07762145996094, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.8086395263672, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.78506469726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.31106567382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.33360290527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.78567504882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7509002685547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.09100341796875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5153045654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.70355224609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.40660095214844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.1563949584961, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.12165832519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.2746810913086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.2845458984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.70475006103516, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48236083984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.53919982910156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.43038177490234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.91423797607422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.74972534179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2306365966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.85015869140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.275634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.52437591552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.25889587402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.49177551269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.83832550048828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.9228286743164, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.52609252929688, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.88314819335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.39962005615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.90605926513672, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.28878784179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.86175537109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.28461456298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.6682357788086, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.24061584472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8926239013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.95716857910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.19184112548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.71147918701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.92066955566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.10987854003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5106201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.42018127441406, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.37303161621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.70840454101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2304229736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6102294921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.98268127441406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.92886352539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8323211669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0802459716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.95269775390625, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.18744659423828, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.07621765136719, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.48062896728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.40716552734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.95378112792969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.10014343261719, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.37830352783203, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.25314331054688, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.57617950439453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.83547973632812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.85436248779297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.39663696289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.19133377075195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.35611343383789, \"water_flow\": 19145.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 193.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.074684143066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.41328811645508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.597293853759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.23297119140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.99365997314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05403518676758, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050148010253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.84033966064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.617286682128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.66956329345703, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.841529846191406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.5520248413086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.23653411865234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.18115997314453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.20238494873047, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.54753112792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.64720153808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.09078979492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.69141387939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.94322204589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.72858428955078, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.44408416748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.1557846069336, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.79605102539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.45198822021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.31684875488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.24423217773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.75304412841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.32674407958984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.27017974853516, \"water_flow\": 1567.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.32275390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.01942443847656, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.77721405029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.63214874267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8297348022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.72332000732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.49500274658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.60688781738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.5562973022461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.74495697021484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.3635025024414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.46965026855469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.11357116699219, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.48167419433594, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.17769622802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.87821197509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.78028106689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6653823852539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.61875915527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.16357421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.77104187011719, \"water_flow\": 85.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.03976440429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.19202423095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.95946502685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.51979064941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.30374145507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.80094909667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.32395935058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.5886001586914, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.78555297851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.7813491821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.99332427978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.90770721435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.21522521972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.85823822021484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.79874420166016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.52645111083984, \"water_flow\": 94.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.59302520751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.69514465332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.07471466064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.41319274902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.97500610351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.17649459838867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.930572509765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.01968765258789, \"water_flow\": 741.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.240047454833984, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.31162643432617, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.34690475463867, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.459510803222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.40983963012695, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.6165542602539, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.88408660888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.83384704589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.02264404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.1595230102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.9410629272461, \"water_flow\": 392.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.3481216430664, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.47637939453125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.69291687011719, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.0252685546875, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.58648681640625, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.04983520507812, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.51122283935547, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.78424072265625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.4899673461914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.24673461914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.14291381835938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.41889953613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.45096588134766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.87809753417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.4807357788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.5531234741211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.29631805419922, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.9842758178711, \"water_flow\": 172.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.21844482421875, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.5973892211914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.16459655761719, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.89574432373047, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.30831909179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1836700439453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.20787048339844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0828094482422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.50608825683594, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.2866973876953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.431396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9680633544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.8188934326172, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.51312255859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.87969970703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.1859588623047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6614532470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.12165069580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.74777221679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.75796508789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.52657318115234, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.30345916748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.15776824951172, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.90721893310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3703842163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.56490325927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5646209716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.63658142089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5304412841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4808349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.07144927978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.40269470214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.24861907958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9238052368164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.19231414794922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.08536529541016, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.45292663574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.04413604736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.09568786621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.61973571777344, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.02987670898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.82006072998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.00607299804688, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.44073486328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.27565002441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0260772705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.63372802734375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.48377990722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.355712890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0542449951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.32606506347656, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.66207885742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1077117919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.0962371826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.37606811523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.96957397460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6519317626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8341064453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.35989379882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6786651611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4781036376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.14126586914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71414947509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.60539245605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.51583862304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.74095916748047, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.85267639160156, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.85025024414062, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.96411895751953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.37471771240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.90412902832031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.15299987792969, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.04222869873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.500267028808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.65009689331055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19142.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 112.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 192.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05429458618164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.08967208862305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.419677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0740966796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.0892219543457, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.868656158447266, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.15085983276367, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.7118034362793, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.364990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.224815368652344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.3174057006836, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.80406951904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.61320495605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.96261596679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.59583282470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.188232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.58516693115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.21379852294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.90746307373047, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.78064727783203, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.90707397460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.74531555175781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.3409652709961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.02340698242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.09085083007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.25685119628906, \"water_flow\": 1571.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.33946990966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.85749053955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.55998229980469, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.3112564086914, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.73436737060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.37191009521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.23812866210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.79991149902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.34661865234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.18821716308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.93579864501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.63360595703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.43193054199219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.2013931274414, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.38746643066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.18841552734375, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.14421081542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.5776138305664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.86612701416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.8133316040039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.72576904296875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.716064453125, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.11885833740234, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.02132415771484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.41216278076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.28914642333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.5689468383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.46541595458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.25025939941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.41390991210938, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.27394104003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.76129913330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.74988555908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.61930084228516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.50584411621094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.5942153930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.20358276367188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.99507141113281, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.59486389160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.67598724365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.2963638305664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.57907104492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.71871185302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.41411590576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.84436798095703, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.26097106933594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24103927612305, \"water_flow\": 718.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24025344848633, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.240081787109375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2557487487793, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.78147506713867, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.19902801513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.8980941772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.58992767333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.08154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.02759552001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.43684387207031, \"water_flow\": 387.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.69148254394531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.18367767333984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.17094421386719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.6786880493164, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.76777648925781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.09945678710938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.97233581542969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.46837615966797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.67092895507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.39761352539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.89244842529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.66212463378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.32888793945312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.80459594726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.20662689208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.85895538330078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.66160583496094, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8329086303711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.43943786621094, \"water_flow\": 171.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.93274688720703, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54935455322266, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.32864379882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1925048828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.50198364257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.31890869140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.50039672851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.67332458496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.385498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.69029235839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.05995178222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.75633239746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.24610900878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.16493225097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.61395263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.54925537109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8014144897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.81278991699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.60981750488281, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.00581359863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.51505279541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.22637176513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.6258773803711, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.77293395996094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.71990966796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.60536193847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1030731201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.27276611328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.14845275878906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.96172332763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.79562377929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.8364028930664, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.11444854736328, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.24603271484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.05445861816406, \"water_flow\": 208.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.09537506103516, \"water_flow\": 172.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.97103118896484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.43573760986328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.10596466064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.97023010253906, \"water_flow\": 144.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.2645263671875, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.68651580810547, \"water_flow\": 103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.44689178466797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.68577575683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.53732299804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.91555786132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.02770233154297, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.74932861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.56314086914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.24400329589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.00601196289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.48838806152344, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.09080505371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.51437377929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.96044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6213836669922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2655487060547, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7126922607422, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.99783325195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.80690002441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.24551391601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.44132995605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0891342163086, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8311538696289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.85435485839844, \"water_flow\": 82.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.88656616210938, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.72705078125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.19373321533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.48126983642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.74253845214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.17277526855469, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.37776947021484, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.69034576416016, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.58872985839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.54780578613281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19124.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 191.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.952293395996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.12592697143555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05158996582031, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.568115234375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.09941482543945, \"water_flow\": 120.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.98961639404297, \"water_flow\": 114.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.9859504699707, \"water_flow\": 108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.46158218383789, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.22060775756836, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.38866424560547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.92154693603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.3503646850586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.2335433959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.84455108642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.93685913085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.29298400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.0006103515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.71136474609375, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.76380920410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.35957336425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.75850677490234, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.12506866455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.56398010253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.42525482177734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.67272186279297, \"water_flow\": 1576.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.07984924316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.15286254882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.20240783691406, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.67037963867188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.26264190673828, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.06414031982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.439697265625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.20133209228516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.09578704833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29766845703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.07024383544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.279296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.40999603271484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.7004623413086, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.11244201660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.72272491455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.15486145019531, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.85566711425781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.36296081542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.26893615722656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.57571411132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.2835464477539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.44356536865234, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.45753479003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.50557708740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.63203430175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.7866439819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.2432632446289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.38611602783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.14434814453125, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.05702209472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.02214813232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.86251831054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.24047088623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.18644714355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.6839599609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.90370178222656, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.84349822998047, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.20154571533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.48656463623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.04061889648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.180484771728516, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.42496871948242, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.228050231933594, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.04685592651367, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.94998550415039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.26947021484375, \"water_flow\": 701.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.30994415283203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.54037857055664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.59114074707031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.39371490478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.88015747070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.25932312011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.93758392333984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.09727478027344, \"water_flow\": 373.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.11985778808594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.15848541259766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.948974609375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.4210205078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.62614440917969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.62002563476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.494873046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.33361053466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.5235595703125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.58648681640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.30599975585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5223846435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.64840698242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8273162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.11052703857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.07624053955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.34656524658203, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.90898132324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.45804595947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.37399291992188, \"water_flow\": 170.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.62128448486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.94901275634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.8326873779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0868682861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1404266357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.62014770507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.99139404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.18736267089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.46278381347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.38951110839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.20249938964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.98464965820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.05313110351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0012664794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.38983154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.97413635253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.21905517578125, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.11811065673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.11036682128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.94699096679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.72917175292969, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.66502380371094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.41011047363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.81587219238281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.2955322265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.87484741210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.09078979492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.19003295898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.57148742675781, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.6609115600586, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.69622039794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.13373565673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.3135757446289, \"water_flow\": 229.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.23989868164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.9834213256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.30793762207031, \"water_flow\": 166.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.05467224121094, \"water_flow\": 152.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.16539001464844, \"water_flow\": 151.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.8049545288086, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.89956665039062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.6954345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.43392944335938, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.16600799560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68537139892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.26687622070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.99079895019531, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.2371826171875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7804718017578, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.08848571777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.5260467529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.58712768554688, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.75816345214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.60121154785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.36090087890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.33128356933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.3311767578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4995574951172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.38583374023438, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0305633544922, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.53358459472656, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.47086334228516, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.34457397460938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54920196533203, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.5797119140625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.33072662353516, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.28742980957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.3563232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.77291870117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.26172637939453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.53507995605469, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.17064666748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.90528106689453, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.97903060913086, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.55619430541992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19109.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 110.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.051204681396484, \"water_flow\": 190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 168.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 129.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 128.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.21574401855469, \"water_flow\": 125.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.93276596069336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.031883239746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.99979019165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.604793548583984, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.18758010864258, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.37446594238281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.47154235839844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.1281509399414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.91194915771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.24747467041016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.86479949951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.7681884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.8462905883789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.40377044677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.84353637695312, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.0672607421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.6996078491211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.1093521118164, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.33961486816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.536376953125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.47021484375, \"water_flow\": 1581.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.09716796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.62246704101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.49364471435547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.06997680664062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.77423858642578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.77526092529297, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.0463638305664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.23847198486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.52955627441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31443786621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.67858123779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.07511901855469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.60836791992188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.20098114013672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.99822998046875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.93395233154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.50719451904297, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.62590789794922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.50161743164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.36200714111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.72084045410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.68812561035156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.37977600097656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.41985321044922, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.69986724853516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.4004135131836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.44254302978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.30054473876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.72119903564453, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.1132583618164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.02620697021484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.13661193847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.19100189208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.7535171508789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89114379882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.77405548095703, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.87010192871094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.80780792236328, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.92228698730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.28988647460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.71050262451172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.50786590576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.5447769165039, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.41715240478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.89193344116211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.700286865234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.30086135864258, \"water_flow\": 686.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.42719650268555, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.61238479614258, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.34251403808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.09429168701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.71536254882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.6690444946289, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.91572570800781, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.3258285522461, \"water_flow\": 358.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.89612579345703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.87061309814453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.68869018554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.87739562988281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.2470474243164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.01227569580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29837799072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43516540527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.8467025756836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.36576080322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.60403442382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.50543212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5422821044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.13784790039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7060546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.01849365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.96112823486328, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.4464111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.47872924804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.10220336914062, \"water_flow\": 167.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.17252349853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.46401977539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.45895385742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3356170654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6974334716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5009002685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.43357849121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.25167846679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.33486938476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.2863006591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.02999877929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.88905334472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.20982360839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3850555419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.04993438720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.82859802246094, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.69358825683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.57317352294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.685302734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.6889877319336, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.51641082763672, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.49812316894531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.7723159790039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.31901550292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.4300537109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2002716064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.48509216308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.12844848632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.60084533691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.46054077148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6632843017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.88595581054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.07259368896484, \"water_flow\": 232.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.22787475585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.46744537353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.61293029785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.36023712158203, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.24303436279297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.0286636352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.93072509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.89614868164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.32465362548828, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.40408325195312, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.32599639892578, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.31122589111328, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.10818481445312, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.8633575439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8927764892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.70909118652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.23377990722656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2600555419922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.95263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.38580322265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.58724975585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.02183532714844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.96078491210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3070526123047, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.04212951660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8538055419922, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.03193664550781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.78565979003906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9249267578125, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.34973907470703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.4513931274414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.18663787841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.2166976928711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.47547149658203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.7809066772461, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.85334014892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.96607208251953, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.81440734863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.32274627685547, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.062957763671875, \"water_flow\": 19074.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 109.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08896255493164, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.959564208984375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.790714263916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.62955474853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.8236198425293, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.400169372558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.268707275390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.19285202026367, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.2590446472168, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.35487365722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.81684112548828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.91043853759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.6585693359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.17518615722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.6517333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.83577728271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.48664093017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.36405181884766, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.0461654663086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.04463195800781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.47608947753906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.24240112304688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.48775482177734, \"water_flow\": 1586.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.02993774414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.18567657470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.9137191772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.95474243164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.62979125976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.76676940917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.690673828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.11959838867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.19053649902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.9025115966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.12026977539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.34902954101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.34266662597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.98237609863281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.84798431396484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.55548095703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.32605743408203, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.62476348876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.13832092285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.87565612792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.93156433105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.50546264648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9164810180664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.54660034179688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.32161712646484, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.11203002929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.36827087402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.813720703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.61697387695312, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.24910736083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.7895278930664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.09458923339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03416442871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.47283172607422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.16327667236328, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.90674591064453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.55352783203125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.06647491455078, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.64823150634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.39010620117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.01589965820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.12080383300781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.37712097167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.44904327392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.86852264404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.705902099609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.31289291381836, \"water_flow\": 672.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.622013092041016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.11155319213867, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.30035400390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.30667877197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.09490203857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.59405517578125, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.41043090820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.38567352294922, \"water_flow\": 354.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.70657348632812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.56295013427734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.92497253417969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.8438720703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.15289306640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.60950469970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.1226806640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.93468475341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.37653350830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.09564971923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.99713134765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.15402221679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.99179077148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.95709228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5322723388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.02076721191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.76866149902344, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.65608978271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.8311767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.64495849609375, \"water_flow\": 162.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.37477111816406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3135528564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.12939453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0482177734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.62582397460938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.10643005371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.4670867919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.30946350097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6334686279297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.618896484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.43345642089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3041534423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.28530883789062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.3932113647461, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.55858612060547, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.63103485107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3864288330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.85806274414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.36048889160156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.84728240966797, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48023223876953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.04306030273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.01274871826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.00335693359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2624053955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.2733154296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.43749237060547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.43975067138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.4486083984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1917953491211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.82207489013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.57069396972656, \"water_flow\": 235.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.04378509521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.97032928466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.33684539794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.72913360595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.57038116455078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.21543884277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.63167572021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.6530532836914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.34065246582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.29359436035156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.92371368408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.24983978271484, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.6056137084961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.9638671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.20602416992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.2416534423828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.42910766601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.12486267089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.72901916503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.62890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.4102325439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.20091247558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.68212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.284423828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6754150390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6273651123047, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.17578125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.67433166503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.1689224243164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.4079818725586, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85285949707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.56507873535156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.78781127929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.9031753540039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.41279602050781, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.65486907958984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.46731567382812, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.29259490966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.88776397705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.15817642211914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.061485290527344, \"water_flow\": 19006.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05005645751953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.9079475402832, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.521915435791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.501548767089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.4864616394043, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.47988891601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.9845962524414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.98795318603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.71965789794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.73076629638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.37468338012695, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.72663116455078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.6605453491211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.40181732177734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.09020233154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.31863403320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1879653930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.26321411132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.46672821044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.64875030517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.4854507446289, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.62313842773438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.08875274658203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.15398406982422, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.48536682128906, \"water_flow\": 1592.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.5157241821289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.28046417236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.1534652709961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.09213256835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.34654235839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.0363540649414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.11642456054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.70679473876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.25511169433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.17880249023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1819610595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0216064453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.44733428955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.10861206054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.50182342529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.5291748046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.92974090576172, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.77188873291016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.32890319824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.05976104736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.44244384765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.76316833496094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.0927963256836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.04717254638672, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.10453796386719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.9955825805664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.26728820800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.26734161376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.14369201660156, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.51729583740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.72756958007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.16258239746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.67411804199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.066162109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.76202392578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.23954772949219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.52384948730469, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.11666107177734, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.57649993896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.85203552246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.02025604248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.32987976074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.52986145019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.95366668701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.507568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.95333480834961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.66267776489258, \"water_flow\": 660.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.4232292175293, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.87102508544922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.94926452636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.18062591552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.50531768798828, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.06903839111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.35887145996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.04505157470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.91175079345703, \"water_flow\": 350.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.58393859863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.44245910644531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.64971160888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5157928466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.08468627929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.74995422363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.47216033935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.95809173583984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.68894958496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.76543426513672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.32122039794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.10484313964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.43898010253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.57241821289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.71830749511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.26077270507812, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.22754669189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.24141693115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.81986999511719, \"water_flow\": 160.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.77449798583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0773468017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.45640563964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.87010192871094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.67410278320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.57192993164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.08322143554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.66268920898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.05780029296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7377471923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.47998046875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.54998779296875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.73149108886719, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.47782135009766, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.33443450927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7086181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4808349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5536346435547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.38671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.58573150634766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.573486328125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4800033569336, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.56359100341797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.85757446289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.8789291381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.13169860839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.94091033935547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.36186981201172, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.89646911621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.40938568115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.00141143798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.20953369140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.13789367675781, \"water_flow\": 239.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.2701644897461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.65115356445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.8768081665039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.92171478271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.3370590209961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.57183074951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.24642181396484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47866821289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.78955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.70492553710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.04476165771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.47742462158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4654312133789, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31016540527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.50706481933594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7471160888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.28306579589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.77186584472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.87295532226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4833221435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6996307373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.17971801757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.74830627441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6083984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.36068725585938, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.15194702148438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.85476684570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.52735900878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4035186767578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.55065155029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.09642028808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.38566589355469, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.48637390136719, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.75196838378906, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.15922546386719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.21826171875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.5616455078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.6139907836914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.01800537109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.78614807128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.12041473388672, \"water_flow\": 18991.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 107.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.573089599609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.00284957885742, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.79086685180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.54596710205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.95750427246094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.81204986572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.48619079589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.6785888671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.43989562988281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.42926788330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.7603988647461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.526641845703125, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.00955963134766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.03108978271484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.14875030517578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.51414489746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.5925521850586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.17494201660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.6045913696289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.74919128417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.3118896484375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.11404418945312, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.44937896728516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.06867218017578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.81353759765625, \"water_flow\": 1605.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.88898468017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.31378173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.00525665283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.54854583740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.4211196899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.42495727539062, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.8324203491211, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.61870574951172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.38623809814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.54417419433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.78028106689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.26628112792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.56583404541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.05851745605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3871078491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.9850845336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.41223907470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.93366241455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.38365936279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.01463317871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.3271713256836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.15474700927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.96588897705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.3309326171875, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.08213806152344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.84765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.7923812866211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9014663696289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.21727752685547, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.25498962402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.40899658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2682647705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.27890014648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.06216430664062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.60163879394531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.55232238769531, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.02754211425781, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.65270233154297, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.84908294677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.47029113769531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.7410888671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.67749786376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.49488067626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.46260070800781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.97467041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.94758987426758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.20056915283203, \"water_flow\": 642.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.18305587768555, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.06425476074219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.34517669677734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.8123779296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.75811004638672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.06432342529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.20992279052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.51607513427734, \"water_flow\": 335.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.73208618164062, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.17221069335938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.94081115722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.40631866455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3911895751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.8774871826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.32335662841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8958511352539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.3293228149414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.90196990966797, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.30279541015625, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.95367431640625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.57205963134766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5360565185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.94908142089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.33847045898438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.48965454101562, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.91584777832031, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.34867858886719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.32823944091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.42022705078125, \"water_flow\": 159.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.9303207397461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.69618225097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.79874420166016, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.95648193359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.2652130126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.5516815185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.78866577148438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.48487854003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6836700439453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.67820739746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.94131469726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2576141357422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.30340576171875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4134979248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.86146545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.03515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.96885681152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1398162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.96402740478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.36788940429688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.70252990722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.83010864257812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.81608581542969, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.38074493408203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.0142593383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6884307861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.38639068603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.7845687866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.70640563964844, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.4737548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.44698333740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.12700653076172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03887176513672, \"water_flow\": 254.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.10611724853516, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.30927276611328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.0506591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.1935043334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.67340087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.88707733154297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.44491577148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.5459976196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.62234497070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.08346557617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.66222381591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.5425033569336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.0208740234375, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.08537292480469, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.38337707519531, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.20169067382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0205078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.91575622558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6837158203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.75697326660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.70925903320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.86082458496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.46307373046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.9974365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.97169494628906, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2909393310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.90234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4451446533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6965789794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1286163330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.3065185546875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.86276245117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.37145233154297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.95868682861328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.0111083984375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.9380874633789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.76231384277344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.14007568359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.43925476074219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.1580696105957, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07719039916992, \"water_flow\": 18976.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.63121795654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.74225616455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.37465286254883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.71112823486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.90567016601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.68870544433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.59070587158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.01082611083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.58952331542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.26110076904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.85577392578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.7005500793457, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.21371841430664, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.96612548828125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.73954010009766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.08490753173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.13640594482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.28443908691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.81350708007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.97203826904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.12320709228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.3156509399414, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.3543701171875, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.92786407470703, \"water_flow\": 1623.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.82013702392578, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.37651062011719, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.83905029296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.60383605957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.33049774169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.56424713134766, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.15084838867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5401840209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.51107788085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.74000549316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.95442199707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.86065673828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.20120239257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.5412826538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.22314453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.06026458740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.81903076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.02301788330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.45668029785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.27722930908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.85917663574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.67607879638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.09308624267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.78459930419922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.93341827392578, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.4732437133789, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.77601623535156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.84473419189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.67034149169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.9633560180664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2589874267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.75726318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.12652587890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.17176055908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.75936889648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.04583740234375, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.67640686035156, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.52230834960938, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.54422760009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.20648193359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.760379791259766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.49481201171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.16090393066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.4658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.783042907714844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.067405700683594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.2021713256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.4334602355957, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2408447265625, \"water_flow\": 639.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.33860397338867, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.642948150634766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.36046600341797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.20870971679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.04521942138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.67945861816406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.54966735839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.51847076416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.92774963378906, \"water_flow\": 332.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.89617919921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.7181167602539, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.39676666259766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.01641845703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.98646545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.87604522705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.74640655517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.7713394165039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.43025970458984, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.17732238769531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.7645492553711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85086059570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.66968536376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.40406799316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.2975082397461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.65973663330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.3303451538086, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.80819702148438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.70024108886719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.94129180908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.60164642333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.31394958496094, \"water_flow\": 156.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.01437377929688, \"water_flow\": 141.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.37246704101562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.33582305908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.89305114746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.85035705566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.70062255859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5222930908203, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1647186279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5333251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4456329345703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.62335205078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9161834716797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.65158081054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.69149780273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.97195434570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.8359832763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.17227172851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.30404663085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.42078399658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.62550354003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.55650329589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.41627502441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.82347106933594, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.97737121582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.69216918945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.82801818847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7157211303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.66105651855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.95332336425781, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.9039535522461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.95850372314453, \"water_flow\": 263.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.0544204711914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.32921600341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.69542694091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.48001098632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.87439727783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.97083282470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.2965316772461, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.28508758544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.85562896728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0965118408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.57977294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.11277770996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.3099136352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.78490447998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.03941345214844, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.78590393066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6276397705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.1913299560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.80621337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.10592651367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4697265625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.09417724609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1529541015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.70632934570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.19625854492188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0048828125, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.61941528320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.88998413085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0590362548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.23939514160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.45323181152344, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.477294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2744598388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7063217163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.05113983154297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95393371582031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.40888214111328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.91944122314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.78418731689453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.74525451660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.614620208740234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0627555847168, \"water_flow\": 18960.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.21501922607422, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06562805175781, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06058883666992, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.55055618286133, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.99456024169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.21597290039062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.57225036621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.84818267822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.14046478271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.55650329589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.99384307861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.510986328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.69339752197266, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.21160888671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.71109008789062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.32835388183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.17161560058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.9759521484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.45785522460938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.85662078857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.48390197753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.09374237060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.12301635742188, \"water_flow\": 2800.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.64888000488281, \"water_flow\": 1127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.6657943725586, \"water_flow\": 1124.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.57989501953125, \"water_flow\": 1120.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.68472290039062, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.23233032226562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.76301574707031, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.34761047363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.00203704833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.58503723144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.42198181152344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.05947875976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.17826080322266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.25841522216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.02263641357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.83690643310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.5304183959961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.85029602050781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.19184875488281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.13462829589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.91514587402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4407958984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.85182189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.83714294433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.73016357421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.16753387451172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.02529907226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.74384307861328, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.7893295288086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.40074920654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.1460723876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.2060089111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0140380859375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.6439971923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.4931411743164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1280517578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.50578308105469, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.49992370605469, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.8714828491211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.46892547607422, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1048355102539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.725677490234375, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.85963821411133, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.2027359008789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.09906005859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.38164520263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.98857116699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.9007568359375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.20646286010742, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.399330139160156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24085235595703, \"water_flow\": 628.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.418338775634766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.074668884277344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.56858825683594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.36915588378906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.2574234008789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.04924774169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.53065490722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.77790832519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.75923919677734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.26750183105469, \"water_flow\": 329.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.91090393066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.4310531616211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.43228912353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.29420471191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.68727111816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.38557434082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.25241088867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.04781341552734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.82678985595703, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.19142150878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.9598388671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8657684326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.81404876708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.90926361083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.05294036865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.27332305908203, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.09046936035156, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.06922149658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.51927185058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.74249267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.01167297363281, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.38977813720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.22273254394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.84198760986328, \"water_flow\": 124.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.03067016601562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.3490219116211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.78752136230469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.41584014892578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.05421447753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3391571044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.13783264160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5033721923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.44631958007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.231201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.96014404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.34234619140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.84078979492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.44190979003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.32744598388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.38091278076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8692855834961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.10052490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.53522491455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.85420989990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.70956420898438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.63264465332031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.56010437011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.72888946533203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.30409240722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.02376556396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.64804077148438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.14801025390625, \"water_flow\": 289.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.3075942993164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.03719329833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7095184326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.10594177246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.64447021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.0351333618164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0895767211914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.62005615234375, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.32630157470703, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.1960220336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4146270751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.94197082519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.29720306396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29203033447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.78315734863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.89010620117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.5428466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.8999481201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.46298217773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.284423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.58995056152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.16912841796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.8307647705078, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.72340393066406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.32559204101562, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.68878173828125, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.79104614257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.48191833496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.788818359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.86669921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.87452697753906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.90518188476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8997039794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.25022888183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.48722076416016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.96516418457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1131362915039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.74050903320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.87804412841797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.66735076904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.6303596496582, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.516334533691406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050010681152344, \"water_flow\": 18936.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.10255813598633, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.37861251831055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.88209915161133, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.3217887878418, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.44142150878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.42908477783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.24994659423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.89171600341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.51744842529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.85680389404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.78799438476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.1751708984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.06340789794922, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.94873809814453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.99053192138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.89180755615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.15501403808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.85121154785156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.36112976074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.55523681640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.3201675415039, \"water_flow\": 2804.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.04115295410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.78616333007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.2315902709961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.05136108398438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.15386199951172, \"water_flow\": 1113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.45648956298828, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.72865295410156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.95670318603516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.28997802734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.28309631347656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1218490600586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.92662048339844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.71607208251953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.4438705444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.10701751708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.08785247802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.82994079589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.60546112060547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.498291015625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.73868560791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.8301773071289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.30473327636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.32705688476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.34530639648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.61791229248047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.86146545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.80260467529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.346923828125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.11066436767578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.70238494873047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5772247314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.69500732421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.8483123779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.83724975585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3717269897461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.99858856201172, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.76028442382812, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.25899505615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.71723937988281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.20458221435547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.91963195800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.78763198852539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.91926193237305, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.93535614013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.04264831542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.12476348876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.70793533325195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.5770149230957, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.076194763183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.4926872253418, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.266273498535156, \"water_flow\": 584.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24514389038086, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.86476516723633, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.14380645751953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.08245086669922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.19883728027344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.47940063476562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.78871154785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.6843032836914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.23297882080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.09396362304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.48335266113281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4014892578125, \"water_flow\": 323.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7640151977539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.71683502197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.2234878540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.90802001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.11290740966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.81532287597656, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.3590316772461, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.69843292236328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.03826904296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.6773452758789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9275360107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.8929443359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.09382629394531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68864440917969, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.23785400390625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.7977294921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6265869140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.96173095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6846160888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.46019744873047, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.60577392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.1914291381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.10433959960938, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.998046875, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.98242950439453, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5385971069336, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.95503997802734, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.226318359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.15213012695312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.97715759277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.22164916992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.40902709960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.37498474121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.64837646484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.3327178955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.17442321777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.80160522460938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.2301025390625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.43971252441406, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.96219635009766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.2842025756836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.84636688232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.70176696777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.31761169433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.40962219238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.5459976196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.46146392822266, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.13030242919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.43169403076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.90740203857422, \"water_flow\": 295.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.93446350097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.27519989013672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.61620330810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.56627655029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4338836669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.39947509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.53975677490234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.84964752197266, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.63417053222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.14165496826172, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.62336730957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.21021270751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.50584411621094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.74573516845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.4294204711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.49847412109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.40968322753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.01487731933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4735565185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.20404052734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.66720581054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.52151489257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.87274169921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.98483276367188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.8368377685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.76686096191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8873748779297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.49594116210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0511932373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.34893798828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0704803466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.63754272460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.43270874023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7776641845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3954315185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.59173583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.9253158569336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.40450286865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.8942642211914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.1250228881836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.32410430908203, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.180641174316406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.74174499511719, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18912.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.652740478515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.98005676269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.537967681884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.173824310302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.56624984741211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.66424560546875, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.36734008789062, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.59025573730469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.78291320800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.29781341552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.77511596679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.18305969238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.37135314941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.757080078125, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.83390808105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.16029357910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.0005111694336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.97220611572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.05632019042969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.61022186279297, \"water_flow\": 2808.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.1203842163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.96097564697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.89521789550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.19730377197266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.78909301757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.0832748413086, \"water_flow\": 1087.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.8075942993164, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.56139373779297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.10481262207031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.49687957763672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.70780944824219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.04348754882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.940673828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.36643981933594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.03593444824219, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.24798583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.55286407470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.45846557617188, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.46961212158203, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.13652801513672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.230224609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.89017486572266, \"water_flow\": 144.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.00745391845703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.36311340332031, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.86040496826172, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03348541259766, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.16899108886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.00817108154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.91163635253906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.34800720214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.22392272949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.35836791992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0333251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.69129943847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.60147094726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.52032470703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0027847290039, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.45921325683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.86376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.24620819091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2113265991211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.25176239013672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.8911361694336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.875946044921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.65875244140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.23239135742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.69050598144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.359375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.10544204711914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.83513259887695, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.44938278198242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.465206146240234, \"water_flow\": 565.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.24003601074219, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.2400016784668, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.44782257080078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.33472442626953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.02042388916016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.61532592773438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.33535766601562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.55693054199219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.50645446777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1589584350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.67635345458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.40673065185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.61991119384766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.46937561035156, \"water_flow\": 318.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.74141693115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.08648681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.97249603271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.32361602783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.93994903564453, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4441146850586, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.9245376586914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.1446533203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.92805480957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7373046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3759002685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4151611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.25772094726562, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47291564941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.41291046142578, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.05609130859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.55755615234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3109130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.57569885253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.84314727783203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.88636779785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.10417938232422, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.75263977050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2669677734375, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.29673767089844, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.18962097167969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.13494110107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.03268432617188, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.26002502441406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.18743896484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.98379516601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.67169189453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1832275390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4333953857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.47518920898438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.23777770996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.73628234863281, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.03150939941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.2297592163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.6903305053711, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.45602416992188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.7126235961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.83360290527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.50212097167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.2351303100586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.05206298828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.68675994873047, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.429931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.45781707763672, \"water_flow\": 301.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.34933471679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.55503845214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.08768463134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.42158508300781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.8662109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.13842010498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.46060180664062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.46435546875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.99256896972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.81742095947266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.47660827636719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.80159759521484, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.23536682128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.82813262939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.60523223876953, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.02774047851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.71690368652344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.0678482055664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.85787200927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.2174835205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5126953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.58192443847656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.58642578125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.8511505126953, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.26492309570312, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.41595458984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.61192321777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.46116638183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.58096313476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1029052734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.71714782714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.85433959960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.86831665039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6391143798828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.44886779785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.4773712158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.73814392089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.2822265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.08370971679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.03201293945312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.64501190185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.9111328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.039527893066406, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.75410842895508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18899.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.174224853515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09654998779297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05028533935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.185142517089844, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0501594543457, \"water_flow\": 102.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.95337677001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.83396911621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.309173583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.92475509643555, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.88414001464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.31795501708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.51814270019531, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.07230377197266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.82962036132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.57292175292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.0639419555664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.13288879394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.34518432617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.25630187988281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.50518035888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.56099700927734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.82654571533203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.85000610351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.67326354980469, \"water_flow\": 2820.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.25202178955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.10059356689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2938232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02784729003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.86116027832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.15846252441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.01311492919922, \"water_flow\": 1082.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.14298248291016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.89527130126953, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.5556869506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.42830657958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.45360565185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.22866821289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.04908752441406, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.08794403076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.5915756225586, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.22049713134766, \"water_flow\": 188.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.10446166992188, \"water_flow\": 173.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.02232360839844, \"water_flow\": 160.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.1043701171875, \"water_flow\": 154.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.58651733398438, \"water_flow\": 148.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.92523193359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.77165222167969, \"water_flow\": 140.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4209976196289, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.96929931640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.06767272949219, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.11463165283203, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.29785919189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.29122924804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.26347351074219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.5791244506836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.73837280273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4993438720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.86134338378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.16815185546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.95074462890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3102035522461, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.10597229003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.76715087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.92803955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.24181365966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.30747985839844, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.7163314819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.37554931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.9777603149414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.46749114990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.62224578857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.7090072631836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.27952194213867, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.56959915161133, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.181983947753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.7327995300293, \"water_flow\": 556.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.30828857421875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.262393951416016, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.244014739990234, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.240928649902344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.254547119140625, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.163795471191406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.16433715820312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.48494720458984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.28778839111328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.45446014404297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.02622985839844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.34844207763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.08815002441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.59829711914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.50321197509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.13534545898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.56189727783203, \"water_flow\": 315.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4282455444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.18973541259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.13675689697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.85900115966797, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.36524963378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.47693634033203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.79590606689453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.50102233886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.74880981445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.93040466308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.01116943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.53276062011719, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.58792114257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.58071899414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.47025299072266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.40562438964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.97938537597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.25970458984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.08045959472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.07647705078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.46322631835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.3617935180664, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.01779174804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.02381896972656, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.06861877441406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.71387481689453, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.49375915527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7617950439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.00204467773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.5079803466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0093536376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.56057739257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.08380126953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5865020751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.01799011230469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.17359924316406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.526611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.7841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.6969223022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.74446105957031, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.10111236572266, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.13143920898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.02693176269531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.22549438476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.53076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.7975845336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.358154296875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.434326171875, \"water_flow\": 302.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.9391098022461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.90508270263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.45905303955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.44406127929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.3746337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.6436767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.13774871826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.98733520507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.70040130615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.15592193603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.93922424316406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.7943115234375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.96952056884766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.08509063720703, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.61933135986328, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.88465881347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.73245239257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.44324493408203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.9180908203125, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.5208969116211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.8892822265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.39898681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.54568481445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.04061889648438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.8157196044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.12429809570312, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.45156860351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.41561889648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.03196716308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1230926513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.22178649902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.16574096679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.88043212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6109619140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.57135009765625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.75625610351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8117218017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.40696716308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0571746826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.66246795654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.01131439208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.2837905883789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.91241455078125, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.64181900024414, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07197189331055, \"water_flow\": 18874.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050010681152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.3510627746582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.062644958496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.043888092041016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.38349151611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.12642288208008, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050018310546875, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.17490768432617, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.00077438354492, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.64228820800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.64592742919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.98912811279297, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.56292724609375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.4776382446289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.16088104248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.1424560546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.93891906738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.059326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.4278335571289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.59080505371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.29315185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.35664367675781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.62217712402344, \"water_flow\": 2828.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.33116912841797, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.09896850585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.16282653808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.33967590332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.26830291748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.62173461914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.8344955444336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.80778503417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.22655487060547, \"water_flow\": 1077.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.95063018798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.56770324707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.26910400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.70449829101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.1192855834961, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.44468688964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.35350799560547, \"water_flow\": 197.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.48895263671875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.71075439453125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.84957885742188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.67383575439453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.04280090332031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.28035736083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.75794219970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.26995086669922, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.91905212402344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.43924713134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.48139190673828, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.98868560791016, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.51995086669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.61203002929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.18260192871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.31390380859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.015869140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7534942626953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.51133728027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.03797149658203, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.16890716552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.347412109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.24249267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.49688720703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.80517578125, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.42955017089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.26327514648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.20068359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.67353057861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.07260131835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.89305877685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.3166732788086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.87800598144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.65486526489258, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.3627815246582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.43119812011719, \"water_flow\": 547.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.90814208984375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.863895416259766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.64801788330078, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.58512878417969, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.22557067871094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.04259490966797, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.14584350585938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.40768432617188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.00652313232422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.02554321289062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.65746307373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.01708984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.64118194580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.67237854003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.5738296508789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.64527130126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.57942199707031, \"water_flow\": 312.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8922348022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.0214614868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.25851440429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.09398651123047, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.79537963867188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.92682647705078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.58516693115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.80647277832031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.98455047607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8647918701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.75914001464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.46238708496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.19912719726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.57643127441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.34554290771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7828369140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2249755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.37644958496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.79478454589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.20957946777344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.30591583251953, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0974578857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.40167236328125, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.81812286376953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.69137573242188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.9521255493164, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.39627075195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.48733520507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.51177978515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.39109802246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.44989013671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.01531982421875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.46248626708984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.94758605957031, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3365249633789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.088623046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.44518280029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.46022033691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.83642578125, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.21343994140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.37152862548828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4789047241211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.6816635131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.27266693115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.50167846679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.06204986572266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.16011047363281, \"water_flow\": 318.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.16524505615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.57890319824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.05329132080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.34809112548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.13316345214844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.63944244384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4341812133789, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1431655883789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.57655334472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.46271514892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.33778381347656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.49559783935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.80384826660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.74949645996094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.84745788574219, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.44647216796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.90376281738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.55460357666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.30943298339844, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.73625946044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.35841369628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.9052734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.22320556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.62289428710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.84115600585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.83602905273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7273406982422, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.68930053710938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.05642700195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.53269958496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.56117248535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.16062927246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4222869873047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.92923736572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.9000015258789, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.76897430419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.06912231445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.37903594970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.25053405761719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.3980484008789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.76393127441406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.69277954101562, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.16719818115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.042972564697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.445674896240234, \"water_flow\": 18832.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07814407348633, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.28934097290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.85697937011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.37070846557617, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.215389251708984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.78129577636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.871490478515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05617904663086, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05550003051758, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.192649841308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.97273254394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.93405151367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.31314849853516, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.05168914794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.12663269042969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.61326599121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.0417709350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.55186462402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.39926147460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.75191497802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.80887603759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.08902740478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.80118560791016, \"water_flow\": 2858.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.06301879882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.54039764404297, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.1339111328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.31466674804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.08647155761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.81155395507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.13370513916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.93512725830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.33062744140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.92288970947266, \"water_flow\": 1059.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.01591491699219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.5055923461914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.85140228271484, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.14694213867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.74778747558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.28044128417969, \"water_flow\": 198.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.54180908203125, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.39616394042969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.58888244628906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.38015747070312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.85396575927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.79129791259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.99600219726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.8450927734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.77549743652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.15708923339844, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.02027893066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.49095916748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.59082794189453, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.84854125976562, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.98306274414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.8174591064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.3186798095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.76431274414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.50469970703125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.92050170898438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.63238525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.1856689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.46997833251953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.05223083496094, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.92987060546875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6502950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.90123748779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.52924346923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.212890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.26991271972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.7625961303711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.40670776367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.43733215332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.6932144165039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.69342041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.6214485168457, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.685855865478516, \"water_flow\": 539.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.57102966308594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.20965576171875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.918338775634766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.902008056640625, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.80757522583008, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.95138549804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.86941528320312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.55252075195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.59049987792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.62822723388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.54200744628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.619873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.77572631835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.80956268310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.83932495117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.68772888183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.9127426147461, \"water_flow\": 308.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.224365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.05550384521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.07879638671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.83206939697266, \"water_flow\": 122.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.33036041259766, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.02584075927734, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.48889923095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.73513793945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.69213104248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.23558044433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.5014419555664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.07298278808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.77307891845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.5342788696289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.31512451171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.95143127441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.15956115722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.27589416503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.22283935546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.16964721679688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.86647033691406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.08447265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.22282409667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.67301177978516, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.98053741455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.01280975341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.04810333251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.2577133178711, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.11717224121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.69903564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.03428649902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.642822265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.66139221191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.80835723876953, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.064208984375, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9731674194336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.72154235839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.40137481689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.37144470214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.61002349853516, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.17676544189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.30899810791016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.40477752685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.78047943115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.69477081298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.88661193847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.37841033935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.19998931884766, \"water_flow\": 323.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.92400360107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.794677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.90628051757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.10464477539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.09637451171875, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.14019012451172, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.69839477539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.84140014648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4046630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1827850341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.5540542602539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.6507797241211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.43773651123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.88157653808594, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.56562042236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2882080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.85275268554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.39791107177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.6767578125, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6834945678711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.26025390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.1234588623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8874053955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.7430419921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1437225341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.7101593017578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.99317932128906, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.39781188964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5312042236328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.67413330078125, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.23358154296875, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7725830078125, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68257904052734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.50758361816406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.8879165649414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.5705795288086, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.71961212158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.36810302734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.85858917236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.15000915527344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.57254028320312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.55309295654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.19096374511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.84942626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.16676712036133, \"water_flow\": 18798.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0500373840332, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.984806060791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.78394317626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.1039810180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.3868408203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.39008331298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.93327331542969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.240875244140625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.38190460205078, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.810848236083984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.3493537902832, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.25079345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.63725280761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.36009979248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.63481140136719, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.75833892822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.83197784423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.26014709472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.05306243896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.40608978271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.57866668701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.97693634033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.27811431884766, \"water_flow\": 2874.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.78690338134766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.95014190673828, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.01067352294922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.65200805664062, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.8763656616211, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.01917266845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.14690399169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.42582702636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.44791412353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.26039123535156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.87307739257812, \"water_flow\": 782.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.27305603027344, \"water_flow\": 268.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.12218475341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.7264175415039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6966552734375, \"water_flow\": 248.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.43107604980469, \"water_flow\": 219.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.99613952636719, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.65406036376953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.55821990966797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.56993103027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.3122787475586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.67513275146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.02882385253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3800506591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.92644500732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.12154388427734, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.78569030761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.81632232666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.49347686767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.44951629638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.03437805175781, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.20083618164062, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.36399841308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.70460510253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.8164825439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.05296325683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.447021484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.87388610839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.07754516601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.19560241699219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.85009002685547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.10404205322266, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.20618438720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.26205444335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.18354797363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.98308563232422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.25809478759766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.32292938232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.19044494628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.36217498779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.7444076538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.90711212158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.828250885009766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.959041595458984, \"water_flow\": 531.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.528385162353516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.18524169921875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.6967887878418, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.06847381591797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.5511245727539, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.93156433105469, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.26250457763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.25837707519531, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.02989196777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.01556396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.3779754638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4232177734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.291015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.96749114990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.13407135009766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.30712890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.38143157958984, \"water_flow\": 304.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.3857650756836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.91583251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.07180786132812, \"water_flow\": 132.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.89998626708984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.68680572509766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.98987579345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.2044677734375, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.19863891601562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.66442108154297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.31300354003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.99637603759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.86370849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.19171905517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47586822509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.49678039550781, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.85777282714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.76397705078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.47569274902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1979217529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0310821533203, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.25538635253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.89308166503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.54537963867188, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.68522644042969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.02225494384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.07771301269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.08694458007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.42338562011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.65756225585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.593017578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3429412841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.45376586914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.29905700683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.2559814453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.89358520507812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.43183135986328, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.32563781738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.55481719970703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.44803619384766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.81106567382812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.2281494140625, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.9035873413086, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.05844116210938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1513900756836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.3987045288086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.3879165649414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.15796661376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.35247039794922, \"water_flow\": 326.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.47455596923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.0265121459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.34796905517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.29484558105469, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.97989654541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.86328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.55469512939453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.54681396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5884552001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.07521057128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.45541381835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.71647644042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.13085174560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.03023529052734, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.10801696777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.55042266845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.51641845703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.58094024658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.7922134399414, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.13552856445312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.828369140625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.8006591796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.31260681152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.055419921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.90487670898438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.83383178710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.08468627929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.2599334716797, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.83921813964844, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.40496826171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.73536682128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0438995361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.18497467041016, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.79547882080078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.93550109863281, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54486083984375, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.83441925048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.66917419433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.13390350341797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.59534454345703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.97049713134766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.72377014160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.66177368164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.22037124633789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05030059814453, \"water_flow\": 18778.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.72170639038086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.37611389160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.16204833984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.12803649902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.62998962402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.40886688232422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.02023315429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.73284149169922, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.325592041015625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.48637390136719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.39146423339844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.72471618652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.92655944824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.55693054199219, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.3209457397461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.37576293945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.50379943847656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.64045715332031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.82459259033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.89937591552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.6552619934082, \"water_flow\": 2887.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.59849548339844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.1134033203125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.2643051147461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.8929672241211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.64836120605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.6047592163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.56863403320312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.50914764404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.97286987304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.63025665283203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.1939468383789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.0673599243164, \"water_flow\": 765.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.35087585449219, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.23133087158203, \"water_flow\": 264.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.83792114257812, \"water_flow\": 258.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.96583557128906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.3153305053711, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.64035034179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.92819213867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.16975402832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.44013214111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.30110168457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.88822937011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.9656982421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.11931610107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.53376770019531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.39408111572266, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.43571472167969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29962921142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.93461608886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3160400390625, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.18997955322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.42807006835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.88986206054688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1079559326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.78646850585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.83770751953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.94497680664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.58949279785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.50892639160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.04887390136719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.294189453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.94944763183594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.45455932617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.41798400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.36219024658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.80329132080078, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.95367431640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.64488220214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.89450073242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.8788070678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.99407196044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.61075210571289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.66486358642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.197059631347656, \"water_flow\": 525.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.51231002807617, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.677764892578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.218624114990234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.5641098022461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.51025390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.9531478881836, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.15896606445312, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.19763946533203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.99432373046875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.60649108886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.55059814453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.38043212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.51539611816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.52186584472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3613052368164, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.10458374023438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.68497467041016, \"water_flow\": 299.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1427001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.89070892333984, \"water_flow\": 138.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4466781616211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.85969543457031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.26903533935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.9381332397461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.10365295410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.1649169921875, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.34902954101562, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.13748931884766, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.42205047607422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.6370849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.1076889038086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.58272552490234, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.77315521240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.77342224121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.4755401611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.50469970703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0987548828125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.58192443847656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.02110290527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6470489501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.95011138916016, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.22042083740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.16450500488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.07013702392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.05110931396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.41200256347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.91693878173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.56737518310547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.54776000976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4351348876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0684814453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.49041748046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.69892883300781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.14437866210938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.32212829589844, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.74015808105469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.89551544189453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.32093048095703, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.47344970703125, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.43860626220703, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.90303039550781, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.98600769042969, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.96752166748047, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.15237426757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.5204849243164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.17860412597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.01097106933594, \"water_flow\": 330.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.06924438476562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.78994750976562, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.7983169555664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.37037658691406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.53213500976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6230926513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.16236877441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.39080810546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.16722106933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1234893798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.39103698730469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.29879760742188, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.81788635253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.52669525146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.30986022949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.40094757080078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.29173278808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.52020263671875, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.50525665283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.96218872070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.29310607910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.13613891601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.72451782226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1959686279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.59042358398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.28054809570312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.89366149902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.19207763671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.451171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.51708984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.76799774169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.1011734008789, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.97742462158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.56150817871094, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.32524108886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.8201904296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.64079284667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.7974624633789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.73397827148438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.19242095947266, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.60962677001953, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.84098815917969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18761.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050132751464844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.26771545410156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.29393768310547, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.60728454589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.26782989501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.7392349243164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.20372009277344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.0626449584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.24868774414062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.73295974731445, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.4435043334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.74658966064453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.18769073486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.74009704589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.91728210449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.76661682128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.34867095947266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.08477783203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.17527770996094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.63780975341797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.86410522460938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.92644119262695, \"water_flow\": 2892.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.1026840209961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.42285919189453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.34738159179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.68704223632812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.79804229736328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.3967056274414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.9740982055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.86913299560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.13511657714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.14942169189453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.07357025146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.86592864990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.20651245117188, \"water_flow\": 762.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.63905334472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.7679214477539, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.45579528808594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.31378936767578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.13597869873047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.84024047851562, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.38624572753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.35295867919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.59050750732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.43359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.46455383300781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.99049377441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.63739013671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.24415588378906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.24507141113281, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.11932373046875, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.86592102050781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.45976257324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.29476165771484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.8196029663086, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.74205017089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5697479248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.90831756591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.27627563476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.26148986816406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5314483642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.60240173339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6430206298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.86610412597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5581512451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.57806396484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.64109802246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.80718994140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.56428527832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.85717010498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.7267074584961, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.7280044555664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.88297271728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.85482025146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.11275482177734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.8192138671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.98173522949219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.14566421508789, \"water_flow\": 516.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.068756103515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.9464225769043, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.75663757324219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.58902740478516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.93585205078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.94612884521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.33427429199219, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.2470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97271728515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36018371582031, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.01661682128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.10531616210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2766876220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.80015563964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5847396850586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.67851257324219, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4059066772461, \"water_flow\": 132.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.69866943359375, \"water_flow\": 155.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.83903503417969, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.20818328857422, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.37696838378906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.80224609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.78519439697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.27313232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.98297119140625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.0749740600586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.98120880126953, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.23368835449219, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.73497009277344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.61099243164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.13859558105469, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.65155029296875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.21499633789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.542236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.89813232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7637481689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.63958740234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5399169921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.43528747558594, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.23269653320312, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.44983673095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.34786987304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.06614685058594, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.90241241455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.3584976196289, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.52562713623047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.6092300415039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.86964416503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2999267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1114044189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.912353515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.99970245361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.468017578125, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.4610366821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.26934814453125, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.59264373779297, \"water_flow\": 107.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.78885650634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.95130920410156, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.86946868896484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.16230773925781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.56169128417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.27071380615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.0337905883789, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.21845245361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.79234313964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.18746185302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.2559585571289, \"water_flow\": 332.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.34788513183594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.68728637695312, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.54634857177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.17884826660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2328643798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.05902099609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0550537109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.99987030029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.02239227294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.51010131835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.39644622802734, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.14459991455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71221160888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.62207794189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.40847778320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.51618957519531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.54894256591797, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.70039367675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.38040161132812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.23541259765625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.51724243164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.27151489257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.66336059570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6416778564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.27947998046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.67864990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6955108642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.87648010253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.89578247070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.53550720214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.40979766845703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.77082061767578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.88700103759766, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.89754486083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.54788208007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2939224243164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.02247619628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.89952087402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.12849426269531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.8082504272461, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.79039001464844, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.767330169677734, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18701.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.37947082519531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.0190544128418, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.3244857788086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.04708862304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.07575225830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.27436828613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.19287872314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.06246948242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.34020233154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.10195922851562, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.00595092773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.072998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.62776184082031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.33334350585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.93352508544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.30867004394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.94578552246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.60713958740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.91963195800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.635498046875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.76414108276367, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.07050323486328, \"water_flow\": 2909.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.94796752929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.81889343261719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.8797836303711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.61978149414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.11329650878906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.53899383544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.4288558959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.76675415039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00117492675781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.11557006835938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.09671020507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.72544860839844, \"water_flow\": 758.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.89696502685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.84990692138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.9031982421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.28495788574219, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.31593322753906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.10501861572266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.32588195800781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.20374298095703, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.57489776611328, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.82913208007812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.32794952392578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.24916076660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.57640838623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.22906494140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.15603637695312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.80805969238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.38584899902344, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.48285675048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1414031982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9926300048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.56375122070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.59412384033203, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.74437713623047, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.8316879272461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.19915771484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.9886474609375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.45053100585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.44833374023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.4920883178711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5546112060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.21310424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.32949829101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.68052673339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0856170654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.22306823730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.80860900878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.15812683105469, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.65281677246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.20831298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.72077178955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.51829147338867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.197532653808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.196903228759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.78009796142578, \"water_flow\": 513.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.117469787597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.46128463745117, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.64789581298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.88333892822266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.32091522216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.10494995117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.90411376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.48143005371094, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.05669403076172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.79891204833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.76605224609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.28689575195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3777313232422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.9102783203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7469711303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.17975616455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.32845306396484, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.20999908447266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.03105926513672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.08421325683594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.91950225830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.70928955078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.50181579589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.32420349121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.42678833007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.95838928222656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.96041870117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.69328308105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.7935562133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.31554412841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.51161193847656, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.99794006347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5479736328125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.43927001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.3429412841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.63223266601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0037078857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.91395568847656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0854034423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.59473419189453, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.47848510742188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.30181121826172, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.07796478271484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.82575988769531, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.05062103271484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.69699096679688, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.55658721923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.18865966796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.40834045410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.31999969482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.77728271484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.74445343017578, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1554946899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.4273681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.28036499023438, \"water_flow\": 151.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.69352722167969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.22370910644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.9678955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.64395141601562, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.24222564697266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.10995483398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.39374542236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.62281036376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.34808349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.4759750366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8296890258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.6572265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.88395690917969, \"water_flow\": 333.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.68744659423828, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.66878509521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.92189025878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9561767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.43211364746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.3124542236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.08860778808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.07357025146484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.94062805175781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.64209747314453, \"water_flow\": 218.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.79425811767578, \"water_flow\": 136.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.98639678955078, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.5781021118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.16805267333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.71450805664062, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.84870910644531, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.87889099121094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.14822387695312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.17196655273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.41513061523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.52328491210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.06869506835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4893341064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.07144165039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.70498657226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0550994873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.32831573486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.93659973144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.8385238647461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.24018859863281, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.79671478271484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.47289276123047, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.58914947509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.80503845214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.02745819091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.50984191894531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.96019744873047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.43551635742188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.86361694335938, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.42879486083984, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.20983123779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05109405517578, \"water_flow\": 18686.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.36865997314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.72887420654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.10823822021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.33293914794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.67584991455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.5781021118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.30028533935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.5490951538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.79365539550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.93190002441406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.43144989013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.19841766357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.64176177978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.02423858642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.65841674804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.94641876220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.3382339477539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.21331787109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.82711791992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.23909759521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.37191772460938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.32592010498047, \"water_flow\": 2926.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.75948333740234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.1478042602539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.29602813720703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.77715301513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.4429702758789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.98392486572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.69354248046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.98760986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.89900207519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.35589599609375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.43766021728516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.9217300415039, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.90630340576172, \"water_flow\": 738.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.40278625488281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.16077423095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02615356445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.98321533203125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.68382263183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.01516723632812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.80986785888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.00920867919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.69493865966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.17803955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.97491455078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.41927337646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.08172607421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5091094970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.01333618164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.38706970214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.7335205078125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.23661041259766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.05726623535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.91334533691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.21817016601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.81153869628906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.7936019897461, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.66007995605469, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.60333251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.93563079833984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.282958984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68919372558594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.09357452392578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.12521362304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.11912536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.95419311523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.92782592773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.8730239868164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.76714324951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.15670013427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.820011138916016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.470664978027344, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.333274841308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.186378479003906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.39796447753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.45991134643555, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.55617141723633, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.65388488769531, \"water_flow\": 505.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.12283706665039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.99639892578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.43098449707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.01435089111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.74244689941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.73090362548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.58313751220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.47257232666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.43675231933594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43822479248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8582763671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.84512329101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.18896484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.74396514892578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.98345184326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.68473052978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.39237213134766, \"water_flow\": 123.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.2549819946289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.79443359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.90235900878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.75135040283203, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.56010437011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6822509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.91081237792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.98177337646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.31118774414062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.55721282958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85237121582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.14852905273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2582015991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.03112030029297, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.11631774902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.99342346191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4281768798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.75967407226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.43988037109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.94017028808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.21688842773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.45249938964844, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0594024658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.67021942138672, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9665069580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.3184814453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.1044692993164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.54403686523438, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.8989028930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.05073547363281, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.67213439941406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.18180847167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.09709930419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.62129211425781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.90975952148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.20470428466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.11067199707031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.64605712890625, \"water_flow\": 155.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.48953247070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.60613250732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.9535140991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.22357940673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.63761138916016, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.01757049560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.94258880615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.98236846923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.15535736083984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.37516784667969, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.10193634033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.90086364746094, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.02745819091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.08781433105469, \"water_flow\": 376.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.08979034423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.96182250976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4584197998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.43643188476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.47543334960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35590362548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.22840118408203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03019714355469, \"water_flow\": 225.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.49317932128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.29808044433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.84651184082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.77014923095703, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.56736755371094, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.7911148071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.64784240722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.41275787353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7753448486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.75933837890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.7605743408203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0831756591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.98190307617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.52850341796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.69273376464844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.20040893554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31712341308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.22057342529297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.42057037353516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.61727905273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.36931610107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.78534698486328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.46166229248047, \"water_flow\": 107.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.16053771972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.24217224121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.16105651855469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.3203353881836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.09669494628906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.02481842041016, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.82594299316406, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.56299591064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.98167419433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05360794067383, \"water_flow\": 15168.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3516.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05308151245117, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.76750183105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.5111312866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.78327178955078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.59555053710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.38710021972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.10773468017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.18343353271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.8140869140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.39381408691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.1601333618164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.41921997070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.78514099121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.45762634277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.83599090576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.76073455810547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.73530578613281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.565185546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.3225326538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.91319274902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.441017150878906, \"water_flow\": 3023.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.4691162109375, \"water_flow\": 92.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.49137878417969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.62213897705078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.50355529785156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.87915802001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.94888305664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.44901275634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.37078094482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.7198486328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.80130767822266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.31481170654297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.96343994140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.93617248535156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.82563018798828, \"water_flow\": 731.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.3226318359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.69246673583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.40119934082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.74849700927734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.8071060180664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.40859985351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.27880859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.75321197509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.70243835449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97157287597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.17594146728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.75967407226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.23179626464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.64126586914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3028564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.18658447265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.19607543945312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8424530029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.8544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.954345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.29954528808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0983123779297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.92045593261719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.77284240722656, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.94013214111328, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.97172546386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8396759033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.16793060302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.35186767578125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.05713653564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8003387451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.42347717285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.90472412109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4940643310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.88504791259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.10590362548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.86575698852539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.86915969848633, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.729248046875, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.31309127807617, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.989383697509766, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.738922119140625, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.47023010253906, \"water_flow\": 457.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.49148941040039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.28202438354492, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.912750244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.80961608886719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.03945922851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.59398651123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.63529205322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.94894409179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.22068786621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1987533569336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.16410064697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7107391357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9466552734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2041473388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.53653717041016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.57439422607422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.00055694580078, \"water_flow\": 95.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.52726745605469, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.1719970703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.1302490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.3817367553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.22286987304688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.54945373535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9538116455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.6593017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.5128402709961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.95829010009766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.1551513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.05699157714844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.11603546142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.48751068115234, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.58831024169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9198455810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.66302490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.21299743652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.25424194335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.23228454589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.69171142578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.99642944335938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.19113159179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3444061279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.84950256347656, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.75144958496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0592041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.82015991210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.08425903320312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.71653747558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.25603485107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.20490264892578, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6728515625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.39788055419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.76840209960938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0364761352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.14434814453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.85480499267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7535171508789, \"water_flow\": 164.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.9731216430664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.97853088378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.98196411132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.08476257324219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.19557189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.34313201904297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47571563720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.80926513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.19499206542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.71593475341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.1942367553711, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.28240203857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.28890228271484, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.21429443359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.57022857666016, \"water_flow\": 380.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.34474182128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.82090759277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.96942138671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.61334228515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5069351196289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.76346588134766, \"water_flow\": 232.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.66950988769531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.91930389404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.86833190917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.41544342041016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.8692398071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.84342193603516, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.34688568115234, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.53080749511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.10237884521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.29000091552734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.18936157226562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.84413146972656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0155487060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.13978576660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.56561279296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.114501953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7028350830078, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9247589111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.78528594970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.4050064086914, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.36702728271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.57205200195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.5196762084961, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.47053527832031, \"water_flow\": 115.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.7045669555664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.05352783203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.14390563964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.97484588623047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.91648864746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.86373138427734, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.13786315917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.20745849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.21562576293945, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15156.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3515.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.353370666503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.60305786132812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.24112701416016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.30996704101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.87772369384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.20429992675781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.19239044189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.4610824584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.40408325195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.29669952392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.99618530273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.59662628173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.63600158691406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.54142761230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.6485595703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.59127807617188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.87675476074219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.26564025878906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.2801284790039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.939918518066406, \"water_flow\": 3033.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.75299072265625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.4797134399414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.49588012695312, \"water_flow\": 91.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.17760467529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.05046081542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.4542236328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.42438507080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.35159301757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2853240966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.35603332519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.45672607421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.28961181640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.85922241210938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.31275939941406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.028564453125, \"water_flow\": 725.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.20369720458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.87640380859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.21806335449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.09857177734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.89695739746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.5267105102539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.04789733886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.8824691772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.68901824951172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.49555969238281, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.05046844482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.06519317626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.25239562988281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.27706909179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.60845947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.62518310546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.94453430175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.55992126464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.91537475585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.84713745117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.79302978515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.19761657714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.40618896484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.12205505371094, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8728485107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.89471435546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.50286102294922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.6561508178711, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.45720672607422, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.41973876953125, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.7545394897461, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.12908935546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0305633544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.29306030273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.26013946533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.01963806152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.17447280883789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.19817352294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.61830139160156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.26274490356445, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.994266510009766, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.807838439941406, \"water_flow\": 348.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.64471435546875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.23265075683594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.22987365722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.055816650390625, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.87147903442383, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.51517486572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.79529571533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0209732055664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.19011688232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.12725830078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.46886444091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4593048095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.22537231445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6912384033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.62974548339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.58979797363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.59867858886719, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.43816375732422, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.85933685302734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.71512603759766, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.61054229736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8326644897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.46862030029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.88743591308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.62104034423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.23895263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6499481201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.81806182861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1195068359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.62962341308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.51409149169922, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.20086669921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.53343963623047, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3249969482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.00868225097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.20037841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5042266845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.30270385742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.68724060058594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6623992919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.2062225341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.07797241210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0709228515625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.00209045410156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.69422912597656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.87020111083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.794189453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.16624450683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.954345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.35523986816406, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.86103057861328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.32230377197266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.89796447753906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.59415435791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.51022338867188, \"water_flow\": 169.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.2719497680664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5891571044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.67733764648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.92784118652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.07928466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.48419189453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1344451904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.63653564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.18461608886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.84364318847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.18988037109375, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.01030731201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.46370697021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.49260711669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.2392349243164, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.648193359375, \"water_flow\": 386.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.95023345947266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.43687438964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0397491455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.75309753417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.72985076904297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.92152404785156, \"water_flow\": 239.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.76365661621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.90878295898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.7819595336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.05677795410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.68968200683594, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.77963256835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.7134780883789, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.9272232055664, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71441650390625, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.16500854492188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.37788391113281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.29393005371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.97645568847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.16716766357422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.96441650390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.59800720214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.26614379882812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.53353881835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.44496154785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.28800964355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.75459289550781, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.24498748779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.77704620361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.92400360107422, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.50033569335938, \"water_flow\": 116.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.78427124023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.07361602783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.51571655273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.72349548339844, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.09590911865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.38324737548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.98780822753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.108707427978516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15144.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3514.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.6100845336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.82804870605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.59526062011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.85626220703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.3298110961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.42969512939453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.07564544677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.5484390258789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.69662475585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.18731689453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.9642333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.71776580810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.48257446289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.43974304199219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.9166488647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.45457458496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.47695922851562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.929443359375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.723880767822266, \"water_flow\": 3045.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.54426574707031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.71357727050781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.37158203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.616943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.70034790039062, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.21285247802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.32068634033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.12179565429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.55848693847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.91009521484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.26586151123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.82957458496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.94010925292969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.76942443847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.42171478271484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.30855560302734, \"water_flow\": 719.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.29200744628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.03953552246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.00833892822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.90180206298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.93311309814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.10807037353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.23902893066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.97888946533203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.43470764160156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.21994018554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.68585205078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.70196533203125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.70881652832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.9473876953125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.11940002441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.04063415527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.78605651855469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6708526611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.12442016601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.73777770996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.83642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3750762939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.37005615234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.44668579101562, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.30555725097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4805908203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4770965576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.16626739501953, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.98828887939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.82839965820312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.48223114013672, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.99764251708984, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.57101440429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.09963989257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.35050582885742, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.515769958496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.300437927246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.98923110961914, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.540931701660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.27173614501953, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.1870002746582, \"water_flow\": 347.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.53147888183594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.6188850402832, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.08919906616211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.1395149230957, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.52264404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.03028106689453, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.1340217590332, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.69275665283203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.2656478881836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.25223541259766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.88302612304688, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.48130798339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.52528381347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0988006591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.02757263183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.67516326904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36527252197266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.43840789794922, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.90045166015625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.88124084472656, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.48328399658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.41817474365234, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.59591674804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.39461517333984, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.17117309570312, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5675277709961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.75599670410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.8309097290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.76716613769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5025634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.5876693725586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.79415893554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.7895736694336, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.34769439697266, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.25135803222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.97283935546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9556121826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.52687072753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.04981994628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.88400268554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.29074096679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.24888610839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5892333984375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.88088989257812, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1800994873047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.13389587402344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.04896545410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.45520782470703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.42342376708984, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.89241790771484, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.27852630615234, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.26062774658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.4308090209961, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.67249298095703, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.36434173583984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.50556945800781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.1789321899414, \"water_flow\": 175.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.57965850830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9878692626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.61004638671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.76187133789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6711883544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.41064453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.36904907226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.81961059570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.20056915283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.82076263427734, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.09347534179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.38268280029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.29115295410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.9966049194336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1466293334961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.3592758178711, \"water_flow\": 468.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.56787109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.7758560180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.19290161132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.79564666748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.00203704833984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.90496063232422, \"water_flow\": 244.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.29644775390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.83901977539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.89237213134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.72373962402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.80059814453125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.06039428710938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.985107421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.02300262451172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.6644515991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.9583969116211, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.98408508300781, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.27711486816406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.42875671386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.36585235595703, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.63121032714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.23052215576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.09603118896484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.72694396972656, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.51122283935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.34545135498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.54821014404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1578598022461, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.65203094482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.19477844238281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.49732971191406, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.25077819824219, \"water_flow\": 196.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.82683563232422, \"water_flow\": 216.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.13713073730469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.81283569335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.69216918945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.53901672363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.68960189819336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06538391113281, \"water_flow\": 15125.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3513.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.33500671386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.81744384765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.05631256103516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.84101867675781, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.40931701660156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.60707092285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.48026275634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.65582275390625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.50628662109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.86737823486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.2243423461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.43568420410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.14096069335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.18470764160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.05712127685547, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.92074584960938, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.99055480957031, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.29747009277344, \"water_flow\": 3056.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.74816131591797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.45685577392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.67122650146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.46195983886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.30982208251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.57958221435547, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.215576171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.77825927734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.76405334472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.24230194091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.76041412353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.91929626464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.53910827636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.88145446777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.97045135498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.5571517944336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.13095092773438, \"water_flow\": 714.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.14370727539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.65771484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.56941986083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.58892822265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.45355224609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.52855682373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.8671646118164, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.78845977783203, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.28994750976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.82805633544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.99882507324219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.51235961914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.89034271240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8366470336914, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.6689453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.2940902709961, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.59327697753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9643096923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9722137451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4524688720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9241180419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5682830810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.09730529785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.683349609375, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7428436279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6287384033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.30929565429688, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.43447875976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.61837768554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7373275756836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.21701049804688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.29608917236328, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.45972442626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.44522857666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.02354431152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.38972473144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.982059478759766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.006752014160156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.47084426879883, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.52230453491211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.497833251953125, \"water_flow\": 340.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.14030075073242, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.29436492919922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.40657424926758, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.968814849853516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.94340515136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.5219612121582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.574588775634766, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.31864166259766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.15276336669922, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.52269744873047, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.78526306152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2667465209961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.22811126708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.68844604492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.77090454101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.92619323730469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.3349838256836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.37628173828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.82899475097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.39215087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.02677154541016, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.1529541015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.08904266357422, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.44596099853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.1961898803711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.22651672363281, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.17308807373047, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.80975341796875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.82148742675781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.14108276367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.50792694091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.54320526123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.293212890625, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4687271118164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.32183074951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.63104248046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7034454345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7490997314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.48123168945312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.24740600585938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.48719787597656, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.2057342529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8946075439453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.3608856201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.26710510253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.13671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.63761901855469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.37574768066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.24848175048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.64232635498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.02212524414062, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.72674560546875, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.4179458618164, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.85286712646484, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16132354736328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16886901855469, \"water_flow\": 183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.31230926513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.45460510253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.61563110351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.3780975341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.82290649414062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.31631469726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.95338439941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.77582550048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0450668334961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.62962341308594, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.96864318847656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.85853576660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.62922668457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.76319885253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.17121887207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.83830261230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1114273071289, \"water_flow\": 471.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.58335876464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.35246276855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.1183853149414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.49022674560547, \"water_flow\": 250.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4724349975586, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.33222961425781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.49105834960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.06344604492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.68077850341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.86328887939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.259521484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.522216796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.92975616455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.76101684570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.89048767089844, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.13766479492188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.3337631225586, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.59114074707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.67737579345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.26595306396484, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.28707885742188, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.31478118896484, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.33055877685547, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.39924621582031, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.42967224121094, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.4108657836914, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.05159759521484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.10037231445312, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.08973693847656, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.89063262939453, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.87904357910156, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.04701232910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.02067565917969, \"water_flow\": 217.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.3041000366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.23046112060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.3841552734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.264617919921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3512.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.5288314819336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.11846923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.5353012084961, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.71060180664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.67890167236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.51716613769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.70378875732422, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.09066009521484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.23480987548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.49469757080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.71903991699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.53201293945312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.59101104736328, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.08595275878906, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.53618621826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.6446304321289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.0191650390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.188140869140625, \"water_flow\": 3100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.46022033691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.3656997680664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.94818878173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.19611358642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.88114929199219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.47283172607422, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.24675750732422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.11048126220703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.39158630371094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.62141418457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.90245056152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.48477172851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.35218048095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5791473388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.82684326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.30767059326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.08164978027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.86431884765625, \"water_flow\": 711.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.69168090820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.2551498413086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.56199645996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4405746459961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.8472671508789, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.11698150634766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.99615478515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.24140167236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.14508056640625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.86534118652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.9779281616211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.92394256591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.56085205078125, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.83769226074219, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.08505249023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.1789093017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.67596435546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.90415954589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.81471252441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.07608032226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.26730346679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.12521362304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.68588256835938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.81350708007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.33135986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8630828857422, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.9937286376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7469482421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.2710189819336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.85527038574219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.45757293701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.88839721679688, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.2698745727539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.44486618041992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.721473693847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.05158233642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.007564544677734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.820621490478516, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.632049560546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.07334899902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.91489028930664, \"water_flow\": 339.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.018009185791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.79208755493164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.472068786621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.20401000976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.43257141113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.98877716064453, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.11280059814453, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.75688934326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.24732208251953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.25142669677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5115966796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.99244689941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.91230773925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.2711181640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.25314331054688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.56404876708984, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.5159912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.36575317382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.79155731201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.42374420166016, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.8714828491211, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.87895202636719, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.17395782470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.56792449951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.14363098144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.32805633544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.51802062988281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.08802032470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.86327362060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.95557403564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.28937530517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.01457214355469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.79914093017578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.12818145751953, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.40058898925781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.43132019042969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.95816040039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.15109252929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.17184448242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.47116088867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.57740783691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.14414978027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.27345275878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.17330932617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.29861450195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2354736328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.53823852539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.49485778808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.19882202148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.61813354492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.29212951660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.89767456054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.15251922607422, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16193389892578, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16000366210938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.2646713256836, \"water_flow\": 190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.56795501708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.14981079101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4279022216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9163360595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.66383361816406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.73300170898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.06825256347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.95772552490234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.78911590576172, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.02117156982422, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.30872344970703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.85031127929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.77413940429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.1580581665039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.22569274902344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.94812774658203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.16459655761719, \"water_flow\": 474.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.17549896240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.14571380615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.11952209472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.49992370605469, \"water_flow\": 259.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.19596862792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.18040466308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.96400451660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.12933349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.02214050292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.01156616210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.63032531738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.70025634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.93516540527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.81446075439453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.80467224121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.09998321533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.58466339111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43846893310547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.60671997070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.607666015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.02560424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.27189636230469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.59117889404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.08626556396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.37132263183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.91389465332031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.39179992675781, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8436508178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.86665344238281, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.77952575683594, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.88882446289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.21728515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.97084045410156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.54725646972656, \"water_flow\": 218.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.25186920166016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.725341796875, \"water_flow\": 242.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.29763412475586, \"water_flow\": 248.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14850.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3511.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.055320739746094, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.41221618652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.4390869140625, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.63520050048828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.44156646728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.45552825927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.86189270019531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.81953430175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.05831146240234, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.1307601928711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.20222473144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.03194427490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.99767303466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.29136657714844, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.13399505615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.43074798583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.96905517578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.955501556396484, \"water_flow\": 3103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.35840606689453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.50653076171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.08014678955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.69012451171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.27546691894531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.65388488769531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.7532730102539, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.88533782958984, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.18355560302734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.97763061523438, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.43487548828125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.78111267089844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.54864501953125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.03770446777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.82818603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.26910400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.01808166503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.56529235839844, \"water_flow\": 708.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.24254608154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.14424133300781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.57207489013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.44004821777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.37682342529297, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.55364990234375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.84156799316406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.8065185546875, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.43228912353516, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.45697784423828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.16940307617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8475341796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.31302642822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.93096923828125, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.91580200195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1485595703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1566619873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.23007202148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2917938232422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9592742919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.23388671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.35169982910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9875946044922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.58566284179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.79660034179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1299285888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.99574279785156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.23777770996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.79698181152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.7792739868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.7982177734375, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.24272155761719, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.70560455322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.02699279785156, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.85660171508789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.20428466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.45499801635742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.63215255737305, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.62656021118164, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.936527252197266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.4400634765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.31983184814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.17313766479492, \"water_flow\": 338.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.62342834472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.5159912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.7381820678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.28376007080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.95369720458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.0324935913086, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.83299255371094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.09593200683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.33147430419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.45272827148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.99858093261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.374755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.48033142089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.90264129638672, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.27948760986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.54850006103516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0456771850586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.27217102050781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.72252655029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.29398345947266, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.9849624633789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.64987182617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.6135482788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.86592102050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.928466796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.34048461914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.70947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.35741424560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.75093841552734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.13919067382812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.49876403808594, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.4339828491211, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8196029663086, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.8407974243164, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.81330871582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.112060546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.37449645996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4905548095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6031951904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8711700439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.65606689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.88990783691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.9912338256836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.97515869140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.25164794921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0811309814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.92298889160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68881225585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.51332092285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.94734954833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.24048614501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16000366210938, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16000366210938, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.23724365234375, \"water_flow\": 201.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.25865173339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0704345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.43240356445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.12078857421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.72147369384766, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.07609558105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.75753784179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.45184326171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.1828384399414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.04180145263672, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.72061157226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.746826171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.48326110839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.88963317871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.93814849853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.65796661376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.84159088134766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.52344512939453, \"water_flow\": 475.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.31661987304688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.6109848022461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.009765625, \"water_flow\": 264.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.75990295410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1118621826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.76715087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3367462158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.33070373535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.62092590332031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.51585388183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.85372924804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8594741821289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.40127563476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.29991149902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.45890045166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.4491195678711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.46964263916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.61051177978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.62252044677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.79739379882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.5887451171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.74285125732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.41295623779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.65241241455078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.74829864501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.77306365966797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.51043701171875, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.89021301269531, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.44566345214844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.60926818847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.57481384277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.7510986328125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.8058090209961, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.19287872314453, \"water_flow\": 237.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.995479583740234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.54941177368164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08485412597656, \"water_flow\": 14838.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3510.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.206661224365234, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.15855026245117, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.33584594726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.8988037109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.39952850341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.2772445678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.97261810302734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.42293548583984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.44615173339844, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.08383178710938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.36795043945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.14906311035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.1565933227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.39215087890625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.20626068115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.78901672363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.0441665649414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.349876403808594, \"water_flow\": 3109.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.1310806274414, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.24036407470703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.52326965332031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.26806640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.65760803222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.56661987304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.82417297363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.18138885498047, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.52438354492188, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.74829864501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1232681274414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.34102630615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.57534790039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.64073944091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.03216552734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.3245849609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.53435516357422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.54541015625, \"water_flow\": 354.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.50489044189453, \"water_flow\": 347.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.42613983154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4691162109375, \"water_flow\": 102.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.72370910644531, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.3952407836914, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.05924224853516, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.82830810546875, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.15036010742188, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.97421264648438, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.3040771484375, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.21857452392578, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.11668395996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.64550018310547, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.3194808959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.50164794921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5470733642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.53643798828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.62908935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.28701782226562, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.4007110595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.9459686279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.65802001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.34877014160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.18878173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.99473571777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2301025390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.14370727539062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.79039001464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.49273681640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.56147003173828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.03422546386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.80420684814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.92792510986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.01315307617188, \"water_flow\": 280.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.23279571533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.98317337036133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.14152145385742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.168678283691406, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.787376403808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.50724411010742, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.99711990356445, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.7009162902832, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.46879959106445, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.77731704711914, \"water_flow\": 336.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.94389724731445, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.6441650390625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.6883316040039, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.94332122802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.8453369140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.5798568725586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.86835479736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.63448333740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8145751953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.01634216308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.80724334716797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88544464111328, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.4572525024414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.40068054199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8768310546875, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8443603515625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36927032470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3845443725586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.75518798828125, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.2885971069336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29393768310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.03076934814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.18294525146484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.21320343017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.21253967285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1351318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.01882934570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.67725372314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35870361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.8469009399414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.24679565429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8963851928711, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.81080627441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.0217056274414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.29588317871094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.39663696289062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.18211364746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8065643310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.21206665039062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.82907104492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.98733520507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.8062744140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.0472412109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.94949340820312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.44349670410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.59384155273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.18655395507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.92193603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.34398651123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.48822784423828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16473388671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16000366210938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16000366210938, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.34703063964844, \"water_flow\": 272.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.80377197265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.97856903076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.76197814941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.72998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.18087005615234, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.52457427978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.02857208251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.23426055908203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.44775390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.30213165283203, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.81936645507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9700164794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.87510681152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.90705871582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.71654510498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.03862762451172, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.71621704101562, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.87423706054688, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.37556457519531, \"water_flow\": 476.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.14703369140625, \"water_flow\": 270.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.27788543701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.93675994873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.00634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.7629623413086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.64579010009766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.02008056640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.84622192382812, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.50070190429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.29235076904297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.16022491455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.49822998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.95297241210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.96197509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.42567443847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.11703491210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.93608093261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.85765075683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.50686645507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.07683563232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.26575469970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.3591079711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.72015380859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.39380645751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.51427459716797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.04747772216797, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.54025268554688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.3506088256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.85652923583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8615493774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.63934326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.23929595947266, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.4268569946289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.63782501220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.67574691772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05107879638672, \"water_flow\": 14826.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3509.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.94703674316406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.3172607421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.74468994140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.37004852294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.8940658569336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.67899322509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.66899871826172, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.75122833251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.74591827392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.00553131103516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.69891357421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.23779296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.30937194824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.5317611694336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.58185577392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.49777221679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.46270751953125, \"water_flow\": 3126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.53241729736328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.30072021484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.92386627197266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.64295196533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.70741271972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.6017074584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.05506896972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.23738098144531, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.34120178222656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.7512435913086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.82865142822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.70333862304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4275131225586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.48118591308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.82361602783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.04859924316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.8509292602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.71480560302734, \"water_flow\": 326.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.84477233886719, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.87487030029297, \"water_flow\": 345.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.34811401367188, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0207290649414, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.99300384521484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.19099426269531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.70579528808594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.84878540039062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.02175903320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.6223373413086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.68255615234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.99909210205078, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.88795471191406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.99713134765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.5145721435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.07327270507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5630645751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.63031005859375, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.63551330566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.4770965576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.94256591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.94921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.08871459960938, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6871795654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.81468200683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.94752502441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.35618591308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.0000762939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.81890869140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.63550567626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.99205780029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.43864440917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.7265396118164, \"water_flow\": 277.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.94193267822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.26852416992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.210693359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.4705696105957, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.32196807861328, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.80466079711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.68628692626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.74909210205078, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.86661911010742, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.526039123535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.3107795715332, \"water_flow\": 327.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.699398040771484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.97523498535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.82459259033203, \"water_flow\": 158.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.33614349365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.75953674316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.2464828491211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.8236312866211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.29861450195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.67962646484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.98944091796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.83130645751953, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.50738525390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.89264678955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.50077056884766, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.9321517944336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8521728515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.21976470947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.91991424560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.33937072753906, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.13019561767578, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.47998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.34696197509766, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.51244354248047, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.58277130126953, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.51925659179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1599884033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9144287109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.18931579589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.19050598144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.78763580322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.53534698486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.09461212158203, \"water_flow\": 118.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.22100067138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.85509490966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.39278411865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.66964721679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.28651428222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.30526733398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.66580200195312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.53213500976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.27809143066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.04490661621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.94680786132812, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.97063446044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.36221313476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.26748657226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.69127655029297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.62246704101562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.86900329589844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.13841247558594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.1620101928711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16000366210938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16000366210938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.21432495117188, \"water_flow\": 304.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.5188980102539, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.58295440673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.19600677490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.1509017944336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.05142974853516, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.18453979492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.96430206298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.92442321777344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.86368560791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.02278900146484, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.653076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.45612335205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.98568725585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.20109558105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.29862213134766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.27700805664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.11643981933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.44170379638672, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.71128845214844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.3465576171875, \"water_flow\": 748.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.85670471191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.45365142822266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3475112915039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.63292694091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9222183227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.51628112792969, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.58399963378906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54863739013672, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.33930969238281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.65501403808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.04025268554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.29129028320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.3209686279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.72509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.12893676757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.296630859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.98636627197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.04667663574219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.33186340332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.81272888183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.98382568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0440444946289, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.99252319335938, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.42778778076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.35973358154297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.8335189819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.68811798095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.8647689819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.58665466308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.56568145751953, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.77709197998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.1240463256836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.2877426147461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.59761428833008, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.051483154296875, \"water_flow\": 14813.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3508.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.830326080322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.91011810302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.55335998535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.38705444335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.48818969726562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.45977020263672, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.02289581298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.78813934326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.19527435302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.73822784423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.8913345336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.43059539794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.42657470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.44226837158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.90104675292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.79063034057617, \"water_flow\": 3130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.89228057861328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.72897338867188, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11457061767578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.33924865722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.71324920654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.56066131591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.36954498291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.80435943603516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.4858169555664, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.49299621582031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.71233367919922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.873291015625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.14657592773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.63410949707031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.94725799560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.34349822998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.46949005126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.67186737060547, \"water_flow\": 310.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.63362884521484, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11861419677734, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.9011459350586, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.7063217163086, \"water_flow\": 234.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.84864807128906, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.01168823242188, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.31810760498047, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.87890625, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.34800720214844, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.25115966796875, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7311019897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.31392669677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.02436828613281, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.80738067626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.25619506835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.92825317382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.28802490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.81301879882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.48817443847656, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.88589477539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.09860229492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.18600463867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.0209732055664, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.20700073242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.61004638671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.18997192382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.8130340576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.87240600585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.45437622070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.24705505371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.45953369140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.80774688720703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.89623260498047, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.34127044677734, \"water_flow\": 262.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.0736312866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.80270385742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.47599792480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.84016418457031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.56616973876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.63888549804688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.95188903808594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.966796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.06937026977539, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.801544189453125, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.48377227783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.56317138671875, \"water_flow\": 198.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.32431030273438, \"water_flow\": 159.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.31818389892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.17922973632812, \"water_flow\": 157.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.60030364990234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.03466033935547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.62004089355469, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.36078643798828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.93235778808594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.11983489990234, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.54326629638672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.977783203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.81765747070312, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1618881225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.43669128417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.62391662597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.46712493896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.00962829589844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.72864532470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.62105560302734, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.20576477050781, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.56084442138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.0666275024414, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.60005187988281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.02670288085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.41757202148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.25196838378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.1761245727539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.861572265625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.38353729248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.29961395263672, \"water_flow\": 122.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.26714324951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.48834228515625, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.6355209350586, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.16258239746094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.17295837402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.78323364257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4339599609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1603240966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0478515625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.85440063476562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1538543701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.32292175292969, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4121856689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.66168212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7665557861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.86111450195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.60182189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.5290298461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.94648742675781, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.22241973876953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.2028579711914, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.65809631347656, \"water_flow\": 325.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.79696655273438, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.51007843017578, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.27700805664062, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.84217071533203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.5479507446289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.18250274658203, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97386932373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.28934478759766, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.21240997314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.72250366210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.97227478027344, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.63345336914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.3574447631836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.46854400634766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.53057861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.50603485107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.84495544433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.63377380371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.6114730834961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.26997375488281, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.7901611328125, \"water_flow\": 759.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.12776184082031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.50493621826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.70179748535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.58631896972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.96976470947266, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8801498413086, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.71366119384766, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.20838928222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.89195251464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.34078979492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.54519653320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.505859375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.59004974365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.98351287841797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.16471099853516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.85131072998047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.54751586914062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.72378540039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.59980773925781, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.06710052490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.89205932617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.51345825195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.96898651123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.45636749267578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.83676147460938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.44925689697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.56127166748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.96861267089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.00918579101562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.94867706298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.38980865478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.6717758178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.77265167236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.37471008300781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05093765258789, \"water_flow\": 14797.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3507.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05052947998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.454254150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.16744995117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.6669692993164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.46935272216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.68301391601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.18790435791016, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.3673095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.9650650024414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.37943267822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.44770812988281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.1451644897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.96669006347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.34113311767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.29457092285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.0597915649414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.209590911865234, \"water_flow\": 3135.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.0114974975586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11833953857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.79618072509766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.51957702636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.63567352294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.42433166503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.49497985839844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.754150390625, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.05777740478516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.95813751220703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.43138885498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.799072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.27108001708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.58011627197266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.76961517333984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.94235229492188, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.18278503417969, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.95418548583984, \"water_flow\": 103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.50029754638672, \"water_flow\": 181.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.62020874023438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11575317382812, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.15369415283203, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.39263916015625, \"water_flow\": 187.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.60266876220703, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.80680847167969, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.35137939453125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9541015625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.59166717529297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.91768646240234, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.50343322753906, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.58183288574219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.75251770019531, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.49285888671875, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.0518569946289, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.38130950927734, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.8158950805664, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.61427307128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.52694702148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.36094665527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.0931396484375, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.36725616455078, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0254364013672, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2518310546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.34637451171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.49098205566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.36666870117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.5536346435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.46627807617188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.5667266845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.44754028320312, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.22560119628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.48477935791016, \"water_flow\": 258.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.47803497314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.62543487548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.26567077636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.6991195678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.35114288330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.9293212890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.49211120605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.18376541137695, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.127437591552734, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.93337631225586, \"water_flow\": 108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.184898376464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.35663604736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.05475616455078, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.95714569091797, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.38617706298828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.81434631347656, \"water_flow\": 151.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.18708801269531, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.23281860351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.30508422851562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.84454345703125, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.08004760742188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.3664779663086, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.48748016357422, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.04418182373047, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.1309585571289, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.71817016601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.16337585449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.81224822998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.090087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.6670913696289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29727935791016, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.5082015991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.36174011230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.4833755493164, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.98530578613281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.56678771972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1075439453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.19032287597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.31724548339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.94013977050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.01160430908203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.04744720458984, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.11558532714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.73294830322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.633544921875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.11602020263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.26168823242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.74945068359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6665802001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3295440673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.39645385742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8386001586914, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.14397430419922, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.90638732910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.77862548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1800537109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7649383544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.44466400146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.98918151855469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03462982177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.47918701171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.493408203125, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.74170684814453, \"water_flow\": 341.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.85783386230469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.95582580566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.18605041503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.17866516113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.46810913085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.70985412597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.15966796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.46232604980469, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.46180725097656, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7840805053711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.56755828857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.38350677490234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.06114959716797, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.45589447021484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3807144165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2966766357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.75799560546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.27305603027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.05137634277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.51605987548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.08759307861328, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.22808837890625, \"water_flow\": 779.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.43038940429688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.97575378417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.98242950439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.48605346679688, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.33427429199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.12150573730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.20359802246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47066497802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.79310607910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.24925231933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.40126037597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.72279357910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85888671875, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.38601684570312, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.50498962402344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.79354095458984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.64495086669922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.91735076904297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.31385803222656, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.60721588134766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.81202697753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.44741821289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.72698974609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.34342956542969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.7796401977539, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.53981018066406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.12977600097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.19725036621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.2071762084961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.40235900878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.91432189941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.57498168945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.6573486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.161109924316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14785.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.396854400634766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.428245544433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.61209487915039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.14232635498047, \"water_flow\": 3506.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.23308563232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.06790161132812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.04430389404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.8091812133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.9121322631836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.9422607421875, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.94258880615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.24752044677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.09123229980469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.74844360351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.94412231445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.0420150756836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.89311218261719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.18382263183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.21248626708984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.52980041503906, \"water_flow\": 3146.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.87102508544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.69185638427734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.53631591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.76197814941406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.02874755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.17062377929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.5547866821289, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.59072875976562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.59063720703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.05707550048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.6793441772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.68889617919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.00115966796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0990982055664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.76737976074219, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.38682556152344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.62190246582031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.41361236572266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.14151763916016, \"water_flow\": 94.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.42549133300781, \"water_flow\": 180.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.87552642822266, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.9177017211914, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02788543701172, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.13758850097656, \"water_flow\": 178.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.33163452148438, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.51007080078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.05908203125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.67294311523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.58902740478516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.08959197998047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.7152328491211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.93787384033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8825454711914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.07667541503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.52307891845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.45021057128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.73857879638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.22318267822266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68038940429688, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.71237182617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.61145782470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.74090576171875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.83352661132812, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.14688110351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.83349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.79295349121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.62429809570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.23683166503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.61921691894531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.03679656982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.57643127441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.10189819335938, \"water_flow\": 255.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.69658660888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.693359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.4681625366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.11424255371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.42100524902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.240478515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.35220336914062, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.43194580078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.41349411010742, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.5322151184082, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.36956787109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.3349380493164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.46438598632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.49858093261719, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.33999633789062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.3595962524414, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.24137115478516, \"water_flow\": 139.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.75607299804688, \"water_flow\": 134.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.7078628540039, \"water_flow\": 109.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.91244506835938, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.63890075683594, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.82969665527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.09439849853516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.28539276123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.81771850585938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.6315689086914, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.32975769042969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.17332458496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.5853271484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.18910217285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.57994842529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.57713317871094, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7220230102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.928955078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.73086547851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.14430236816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7613525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47109985351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.28485870361328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.90666198730469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.01811218261719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.83140563964844, \"water_flow\": 134.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.71317291259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.7274398803711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.96778869628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.20807647705078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.50125122070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.84474182128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.64288330078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.09246826171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.91366577148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.86402130126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.25492858886719, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.45661163330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.94506072998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.67631530761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.12030029296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.57085418701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.92799377441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.09345245361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.34148406982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.53194427490234, \"water_flow\": 362.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.0600814819336, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.86925506591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.91778564453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.73997497558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.16337585449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.06336212158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.64573669433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.99227905273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.11370849609375, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.14936828613281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.38095092773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0651092529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6477813720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.80786895751953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.4709701538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.51756286621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.11944580078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.25068664550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.43063354492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.03782653808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6405258178711, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.18597412109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.94285583496094, \"water_flow\": 796.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.95795440673828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.89885711669922, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.44569396972656, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.2344970703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.43536376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.52442169189453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.28467559814453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.79695892333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.56658935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.87814331054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.921142578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.30996704101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.72588348388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.87716674804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.39202117919922, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.65484619140625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.43006134033203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.50012969970703, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.41083526611328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.85673522949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.37931823730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.90003967285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.78539276123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8357925415039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.6743392944336, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.48341369628906, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.54907989501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7266845703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.0408706665039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.22286224365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.75587463378906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.43547058105469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.41625213623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.16672134399414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14773.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.440494537353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.89292907714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.73349380493164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.24519348144531, \"water_flow\": 3501.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.83717727661133, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.69623565673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.31018829345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.66673278808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.48383331298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.79216766357422, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.12957763671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.33018493652344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.70235443115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.54144287109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.54264068603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.58922576904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.794349670410156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.34919738769531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.21493911743164, \"water_flow\": 3154.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.57865142822266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.98374938964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.23431396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.99681854248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47110748291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.83834075927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.26197052001953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.33641052246094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.84400939941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.98052978515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6840057373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9708709716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0477752685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.48590087890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.38996124267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.62747955322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.9669189453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.59977722167969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.43203735351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.8928451538086, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.79205322265625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.03227233886719, \"water_flow\": 179.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.69544219970703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.61712646484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.53076171875, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.73629760742188, \"water_flow\": 171.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.13973999023438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.8709945678711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.97005462646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.79253387451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3454360961914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.32557678222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.76213836669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.59014129638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.39163208007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.36443328857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.45527648925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.19224548339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.33180236816406, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.00331115722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68791198730469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.55426025390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.71775817871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.67111206054688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2100067138672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.69137573242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.90878295898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.18142700195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.06777954101562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.38654327392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.66064453125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.66818237304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.00279235839844, \"water_flow\": 252.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.28014373779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.01123809814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.1606216430664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.8058853149414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.4197998046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.42057800292969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.1578369140625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.803871154785156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.51985549926758, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.35428619384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.50369262695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.5780029296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.62373352050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.91008758544922, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.85350036621094, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.0193862915039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.61656188964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.4755859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.94284057617188, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.91136169433594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.43961334228516, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.24470520019531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.06329345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2593002319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.66411590576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.40916442871094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.86209869384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.38803100585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.53558349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.54885864257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.0370101928711, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.0591049194336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.0322494506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.11483001708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.23056030273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4817657470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.5501937866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.7389144897461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1143569946289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97975158691406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.5973129272461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.44676971435547, \"water_flow\": 138.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.35491943359375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.35084533691406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.99569702148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3042449951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.36582946777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.64280700683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.94297790527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.43478393554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.8027114868164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.04325103759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.61895751953125, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3583984375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.17095947265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.92083740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.96910858154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.28087615966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.87031555175781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.5605239868164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.29803466796875, \"water_flow\": 368.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.31067657470703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.5556411743164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.08071899414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.55238342285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.41888427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.43529510498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.54473876953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.650634765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.10977172851562, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3600845336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.18455505371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.23182678222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.14437866210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.02266693115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.79335021972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.149658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.88328552246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.22734069824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.00016021728516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.76475524902344, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.29679870605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.22750854492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.38920593261719, \"water_flow\": 803.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.18196105957031, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.72493743896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.27006530761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.200927734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.08430480957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.3501205444336, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.42520141601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.38892364501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.30422973632812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6687469482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.98094177246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.18655395507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.55686950683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.9586181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.61979675292969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.73890686035156, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.56085968017578, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.287353515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.03011322021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.99553680419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.6362075805664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.80463409423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.27338409423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.6988296508789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.41687774658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.46941375732422, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.29463195800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.07067108154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.86328887939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.36053466796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.20349884033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.26643371582031, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.544654846191406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.057228088378906, \"water_flow\": 14751.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.7767219543457, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.90025329589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.87287521362305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.335758209228516, \"water_flow\": 3496.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.786781311035156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.94606399536133, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.38126373291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.91765213012695, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.28725051879883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.2778434753418, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.275901794433594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.9841079711914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.79672241210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.5483169555664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.20783996582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.89098358154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.97603988647461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.30381774902344, \"water_flow\": 3229.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.191734313964844, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.35565185546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.03622436523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.40206909179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.08531188964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.56211853027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.15147399902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.10136413574219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.60994720458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8740692138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.81358337402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.5789337158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.36431884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.58006286621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.86634826660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2719268798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.11421203613281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.76793670654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.54874420166016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.60449981689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.71852111816406, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.95069122314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.53571319580078, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.87156677246094, \"water_flow\": 178.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.18717193603516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.9858169555664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.26249694824219, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.11896514892578, \"water_flow\": 167.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.88267517089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.18743133544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.61114501953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.73400115966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.4068603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2220916748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.96437072753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.74165344238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.2696304321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.51324462890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.11124420166016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.14728546142578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.05863189697266, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.55962371826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.11123657226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.61602783203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.70913696289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.63438415527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7411651611328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.12449645996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.41537475585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.45870971679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.07730102539062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.19161224365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.57960510253906, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.42150115966797, \"water_flow\": 241.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.91925811767578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.48511505126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.14893341064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.84120178222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.70757293701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.2855453491211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.71688842773438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.96736907958984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.89814758300781, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.131492614746094, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.128173828125, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.72025299072266, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.24394989013672, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.22562408447266, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.63078308105469, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.13401794433594, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.15425109863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.35932159423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.27975463867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.50586700439453, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.71257781982422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.00043487548828, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.86001586914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.584228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.66744995117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.18624877929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.27375793457031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.01414489746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.98234558105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.89900207519531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.68299865722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.95789337158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.00736236572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.70783996582031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.763427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.73480224609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.93071746826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.82542419433594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.88616943359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.49243927001953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.41575622558594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.978759765625, \"water_flow\": 162.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.71919250488281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.59765625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.89167785644531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5953369140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.77926635742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.5907211303711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.79403686523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.09101867675781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.51709747314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.79373168945312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.35210418701172, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.39447784423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.0052261352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.66996765136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.1946792602539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.33729553222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8673095703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.78176879882812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.90157318115234, \"water_flow\": 375.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.63399505615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.33556365966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.64872741699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.66616821289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1473846435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.37704467773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.46731567382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.73674774169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.72905731201172, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.7051010131836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.72919464111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.1223602294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6292724609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.52163696289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3201446533203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.1351089477539, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.19256591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.61918640136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.95110321044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.58074951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.70048522949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.88555908203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.11515045166016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.52533721923828, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.93195343017578, \"water_flow\": 849.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.50001525878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.630859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.63750457763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.86080932617188, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.11595916748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.39484405517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.6870346069336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1377716064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8401336669922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9556884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.42501831054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.6796646118164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.04484558105469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.63615417480469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.04222106933594, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.7481460571289, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.72158813476562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.64166259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.82474517822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.95321655273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7142562866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.09294891357422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.9798355102539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.16897583007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.21647644042969, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.50697326660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.13719940185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.20539093017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.85651397705078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.03330993652344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.22062683105469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.087646484375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05057144165039, \"water_flow\": 14727.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05011749267578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.846771240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.669532775878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.210792541503906, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.46273422241211, \"water_flow\": 3482.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.67128372192383, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.76108932495117, \"water_flow\": 3429.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.74584197998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.28711700439453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.32584762573242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.97355270385742, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.48295211791992, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.118743896484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.77585983276367, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.78352355957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.27772521972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.45888900756836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.042442321777344, \"water_flow\": 3235.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.802120208740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.47555541992188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.41638946533203, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.35820007324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.5815887451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.48895263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.89468383789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.665283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6806182861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.74851989746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4521026611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7443389892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.58963012695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.30873107910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.48387145996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.32330322265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2735595703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5504379272461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.47920227050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.16725158691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.93466186523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.89740753173828, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.12369537353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.51570129394531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.36266326904297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.97960662841797, \"water_flow\": 177.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.69256591796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.0071792602539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.27821350097656, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.34627532958984, \"water_flow\": 165.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.56055450439453, \"water_flow\": 161.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.2178726196289, \"water_flow\": 157.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.05690002441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3824920654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0807647705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0543975830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.42837524414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1138916015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.9073715209961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.62176513671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.57310485839844, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.85404968261719, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.73918151855469, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9261474609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.77459716796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3011932373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.76231384277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.974365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.01255798339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3430938720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.56619262695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.99779510498047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.46467590332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.99087524414062, \"water_flow\": 236.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.56395721435547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.28094482421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.30241394042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.75794219970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.21492767333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.62921905517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.59938049316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.77159118652344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.59026336669922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.84546661376953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.01581573486328, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.23354721069336, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.04373168945312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.98094940185547, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.98797607421875, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.62505340576172, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.92027282714844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.74915313720703, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.64508056640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.29457092285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.10125732421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.75281524658203, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.07958984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.87828826904297, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.86495208740234, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.21411895751953, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.13509368896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.75630187988281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.36061096191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.29231262207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.1516342163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9266357421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.70817565917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.67200469970703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.12330627441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.04459381103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.95425415039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.14586639404297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.267822265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0508041381836, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.78059387207031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.58271789550781, \"water_flow\": 171.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.06659698486328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.01107788085938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.87628173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.80374908447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0637664794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.79852294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.17819213867188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.52005767822266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.39995574951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.85120391845703, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.87818908691406, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.76038360595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.47911834716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.08704376220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.82402801513672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.14486694335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.54464721679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.52383422851562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.6584701538086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.28166961669922, \"water_flow\": 385.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.95460510253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.08519744873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.79005432128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1724853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85228729248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.3138656616211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5984115600586, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.38350677490234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.13369750976562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.353759765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.08908081054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.4409637451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.08099365234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4407196044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.34486389160156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3245620727539, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.72840118408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.91472625732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.99200439453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.022705078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.1698226928711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.62744903564453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.48529815673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.9729995727539, \"water_flow\": 860.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.7538833618164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9535903930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.77429962158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.97628784179688, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.43120574951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9845199584961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.2582778930664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.30140686035156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.72071838378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.4224853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.43701171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9048309326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.30887603759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.47261047363281, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.2163314819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9638671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.2355728149414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2777099609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.13938903808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.8835678100586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.89912414550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.74578094482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.43061828613281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.90957641601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.65827178955078, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.66437530517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.62171936035156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.93316650390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.86184692382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.34904479980469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.9062728881836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.96329879760742, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050079345703125, \"water_flow\": 14715.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.30824279785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.02102279663086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.38992691040039, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.662841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.64183807373047, \"water_flow\": 3481.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.80678176879883, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.865421295166016, \"water_flow\": 3426.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.95301055908203, \"water_flow\": 3419.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.96429443359375, \"water_flow\": 3416.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.03924560546875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.63465881347656, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.507476806640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.18076705932617, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.739315032958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.045257568359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.25539779663086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.193267822265625, \"water_flow\": 3251.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.67884063720703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.19828033447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.1336669921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.44721221923828, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.55736541748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.17855834960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.95765686035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4433135986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.81504821777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.61329650878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.58236694335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.66236877441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.08973693847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.1766357421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.48287963867188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.68287658691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.76065063476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.99640655517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.26858520507812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.03353118896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.2946548461914, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.64757537841797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.46068572998047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.26935577392578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.27588653564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.78843688964844, \"water_flow\": 173.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.27996826171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.33785247802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.42815399169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.44241333007812, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.56107330322266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.77470397949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.53032684326172, \"water_flow\": 154.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.01207733154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7066192626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.54541778564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.12339782714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2345199584961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.70835876464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.88098907470703, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8729476928711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.53962707519531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.32530212402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.6055908203125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.40945434570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.08412170410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0635986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.28146362304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.10015869140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.57839965820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.58252716064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.79276275634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.50548553466797, \"water_flow\": 206.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.38015747070312, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.10819244384766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6503950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.96534729003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.3482894897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.87320709228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.64311981201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.04486083984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.16622161865234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.47550201416016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.65872192382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.2443618774414, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.3170051574707, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.317047119140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.8532943725586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.44243621826172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.32240295410156, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.30901336669922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.11270904541016, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.83164978027344, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.30719757080078, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.87667083740234, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.3531265258789, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.66582489013672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.6308822631836, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.60885620117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.94351196289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.8293228149414, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.21489715576172, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.54813385009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.75017547607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.31059265136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.45958709716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3959732055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.4151382446289, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.88311767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.52661895751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.21075439453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.4992904663086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.2127456665039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.69528198242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.38751983642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.93159484863281, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.04596710205078, \"water_flow\": 182.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.40875244140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.36903381347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.7126693725586, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.42843627929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1278839111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.786865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1076202392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.246337890625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.74273681640625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.98638916015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.49971008300781, \"water_flow\": 80.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.9371566772461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.55526733398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.54778289794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.93584442138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.02948760986328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.7773666381836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.69535827636719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.81417846679688, \"water_flow\": 393.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.75439453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.67906188964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.73931884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1391143798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.53907012939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.31721496582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.17321014404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.84605407714844, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.76463317871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.77600860595703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.56227111816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.71371459960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.352294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.67820739746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6802520751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.3797149658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.82106018066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.96653747558594, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.81925964355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.61998748779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.65943145751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.30608367919922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.98014831542969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.17900848388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.90145111083984, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.65349578857422, \"water_flow\": 866.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.17344665527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.23465728759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.92190551757812, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.00334167480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.88524627685547, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0627670288086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.64212036132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.75464630126953, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6085968017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.39268493652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.28598022460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.90992736816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35435485839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.9216079711914, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.26764678955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.90762329101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.36865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6269989013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.97986602783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.21943664550781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9763412475586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.86112976074219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.40648651123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.34541320800781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.3959732055664, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.23976135253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.68778991699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.40168762207031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.51283264160156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.86766815185547, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.03020477294922, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.31785202026367, \"water_flow\": 14696.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.15965270996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.984004974365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.6580696105957, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.94612503051758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.92277526855469, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.06666946411133, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.2094612121582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.098838806152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.081398010253906, \"water_flow\": 3339.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.14764404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.00594711303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.73626708984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.484649658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.07625961303711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.73212814331055, \"water_flow\": 3268.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.218910217285156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.38565063476562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.28214263916016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.57671356201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.93922424316406, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2151870727539, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.41820526123047, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.50888061523438, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.96397399902344, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.71839904785156, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.53074645996094, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.77578735351562, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.1959228515625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.44200134277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6505126953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.04495239257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.26173400878906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.34832000732422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.17997741699219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.77095031738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5762939453125, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.79753112792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.43083953857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6893539428711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.61878967285156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.86598205566406, \"water_flow\": 167.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.65288543701172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.95848083496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.52861022949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.35919952392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.7675552368164, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.4185791015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.90719604492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.72415161132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.4287338256836, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.30371856689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.51324462890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.83269500732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.89382934570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.24075317382812, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.5243148803711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0000762939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.28982543945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.17367553710938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.41741943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.11721801757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.62796020507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.40501403808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.72116088867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.50628662109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.32591247558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.37496948242188, \"water_flow\": 192.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.09661102294922, \"water_flow\": 199.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.17594146728516, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.99850463867188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.29244995117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.19131469726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.83970642089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.14617919921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.89766693115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.23371887207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.90813446044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.29286193847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.8984603881836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.33707427978516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.77398681640625, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.86566925048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.69528198242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.4483871459961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.01656341552734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.56864929199219, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.86063385009766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.84376525878906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.81761169433594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.96705627441406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.69686889648438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.47774505615234, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.01068115234375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.01952362060547, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.54995727539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.52104187011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.11873626708984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.83080291748047, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.72887420654297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.44032287597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.47360229492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.63429260253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.9049072265625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.6111068725586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.32960510253906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.92249298095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.69509887695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.72315216064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.8893051147461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.69790649414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.40506744384766, \"water_flow\": 194.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.16717529296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.87873840332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.46685791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.07440185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.5951385498047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.37167358398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.28282165527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.88417053222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.51211547851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.95928192138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.38514709472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.20325469970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.44078063964844, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.32942962646484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.15110778808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.06695556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.64666748046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.39169311523438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.71671295166016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.99696350097656, \"water_flow\": 402.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1509017944336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.12421417236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7043914794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.85970306396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43109130859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.44590759277344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.39775085449219, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.42015838623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.89159393310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.8588638305664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.09415435791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.57574462890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.9799346923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.39373779296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.61500549316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.9771270751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.49602508544922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.63809204101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5963134765625, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.98452758789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.47490692138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.07000732421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.11405181884766, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.86396789550781, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.86994171142578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.25839233398438, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.30119323730469, \"water_flow\": 871.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.10203552246094, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.45446014404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.99786376953125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.38835144042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.74395751953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.53707122802734, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.69572448730469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.6844711303711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.2325210571289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.13972473144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.30325317382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.4963607788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.5906982421875, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.89469146728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.13006591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.81145477294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.70572662353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.24527740478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.41248321533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.06090545654297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.21569061279297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.51959991455078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.88878631591797, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.43323516845703, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.58631896972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.00910949707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.43354797363281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.42596435546875, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.03372192382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.68852233886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.01618576049805, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14667.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.08740234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.14933776855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.64641571044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.03969192504883, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.846839904785156, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.11467361450195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.189579010009766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.31550216674805, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.445213317871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.391387939453125, \"water_flow\": 3334.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.648860931396484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.592769622802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.778377532958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.384952545166016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.29481506347656, \"water_flow\": 3286.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.746150970458984, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.19973754882812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.72040557861328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.6216049194336, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.03736114501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.3549575805664, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.93614196777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.306396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.90856170654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.03648376464844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.90937805175781, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.01792907714844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0576934814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.44578552246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.70053100585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0605926513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.18301391601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.95643615722656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.38540649414062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.72529602050781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.63182830810547, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.34507751464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.12432861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.45541381835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.88201141357422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.08914184570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.47362518310547, \"water_flow\": 157.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.78284454345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.89251708984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.11583709716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.98725891113281, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.19347381591797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.54267883300781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.45118713378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.67670440673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.66845703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.539794921875, \"water_flow\": 144.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.20936584472656, \"water_flow\": 110.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.56254577636719, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.81719207763672, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.50142669677734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.88604736328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.75987243652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1060791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.21096801757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.89691162109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.05044555664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.85200500488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.00336456298828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.12765502929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.03507232666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.23590850830078, \"water_flow\": 187.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.83897399902344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.61276245117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.8270034790039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.75199127197266, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.24390411376953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.90090942382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.68251037597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.64864349365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.82877349853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.20954132080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.5172119140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.00170135498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.65400695800781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.19001007080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.3172378540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.39850616455078, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.79613494873047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.19019317626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.92758178710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.52562713623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.59515380859375, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.88347625732422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.35202026367188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.75333404541016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.90575408935547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.03726959228516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.18781280517578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.0501937866211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.739990234375, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.71155548095703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.59809875488281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.47871398925781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.81672668457031, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.46125030517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.34275817871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.09082794189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.52963256835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.03905487060547, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.20169830322266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.45801544189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.91524505615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.11017608642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.80608367919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.10684204101562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.63972473144531, \"water_flow\": 199.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.94523620605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.09228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.53816986083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.24673461914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.75743103027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.96742248535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0793914794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.90011596679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.61515808105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.8280029296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.97737121582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.83795928955078, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.84249877929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.85502624511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.43993377685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.50450897216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8204574584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.65503692626953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.47838592529297, \"water_flow\": 414.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.94549560546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.42452239990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.93414306640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.3145523071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.480712890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.58316802978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.29470825195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.38060760498047, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.03890991210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.90802001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.41886138916016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.67948150634766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.990478515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.56143188476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.36871337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.83212280273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.79969787597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.93292236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.39525604248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.23220825195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.65491485595703, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.46189880371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.91262817382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.49577331542969, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.72843170166016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.5182113647461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.23528289794922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.42843627929688, \"water_flow\": 954.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.6595687866211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.37843322753906, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.61865997314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.73541259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.77911376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.12142181396484, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.29476928710938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.18365478515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.44122314453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.32054901123047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.81173706054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.74829864501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.03751373291016, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.67044830322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.18844604492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3307113647461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.16488647460938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.33100128173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.18081665039062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.87290954589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.25956726074219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.91443634033203, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.61306762695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.44699096679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.77537536621094, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.83147430419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.02993774414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.7374496459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.36894989013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.03727340698242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.6690559387207, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14657.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.18695831298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.75250244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.553707122802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.96098709106445, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.2034797668457, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.43193817138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.43480682373047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.600196838378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.55976867675781, \"water_flow\": 3332.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.07209396362305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.578433990478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.166072845458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.87188720703125, \"water_flow\": 3290.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.50141143798828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.73497009277344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.04785919189453, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.70242309570312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.75386810302734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.7027816772461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.09270477294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.75682067871094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.27456665039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.08468627929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.77688598632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.87738037109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.83554077148438, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.76234436035156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.39315795898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.48126220703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.02281188964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8719482421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.51573181152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.67664337158203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.8312759399414, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.24785614013672, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.87047576904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.83426666259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.37390899658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.529052734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.33666229248047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.04256439208984, \"water_flow\": 148.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.05490112304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.55714416503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.84366607666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.45052337646484, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.51187896728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5527801513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.07452392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.30538940429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.57637023925781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9814453125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.94310760498047, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.36994934082031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.45510864257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.49253845214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0245361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.91567993164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.77713012695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.47959899902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0333709716797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.59376525878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.82469177246094, \"water_flow\": 167.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.20205688476562, \"water_flow\": 174.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.00863647460938, \"water_flow\": 182.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.9119644165039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.43678283691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7279815673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.49159240722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.10853576660156, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.259033203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.55345153808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.79708099365234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.0235366821289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.54495239257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.92802429199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.19609832763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.30602264404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.4755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.3425521850586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.98177337646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.71221160888672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.91202545166016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.00837707519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.74821472167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.66378021240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.87203979492188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.36428833007812, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.48564910888672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.44019317626953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.87664031982422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.09080505371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.50540161132812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.11223602294922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.58941650390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.86280059814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.7596435546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.12261199951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.27108764648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.70964050292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.96742248535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.38485717773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.36259460449219, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.99653625488281, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.22732543945312, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.50911712646484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.71956634521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.99954986572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.47135925292969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.49425506591797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.44673919677734, \"water_flow\": 204.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8846206665039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.66805267333984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.08361053466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68384552001953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.93968200683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.14996337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1165771484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.68162536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5602035522461, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.34962463378906, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.3713150024414, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.99617767333984, \"water_flow\": 95.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.58460998535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.00869750976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.00691986083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.44218444824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.20915985107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.53116607666016, \"water_flow\": 423.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.65882873535156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.44982147216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.88684844970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.66911315917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.75775146484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.96971893310547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.53329467773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.84773254394531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.7969970703125, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.13544464111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.18907165527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95960235595703, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9446792602539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.23374938964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.2645721435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.57984924316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.48373413085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.65763854980469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.64457702636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8092041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.55281829833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.39960479736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.83334350585938, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.73075866699219, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.55364227294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.42334747314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.26288604736328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.78396606445312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.80650329589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.33345794677734, \"water_flow\": 969.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.31636047363281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.0547866821289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.84205627441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.27284240722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.07032012939453, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.4620361328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.00235748291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.64501953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.52340698242188, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.26750946044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.66616821289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.45047760009766, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.78197479248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.0809326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.34234619140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.40766143798828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.96257019042969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.52249908447266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.35421752929688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.76579284667969, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.05402374267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.13878631591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.93578338623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.83056640625, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.6396713256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.7208023071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.00621795654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.98124694824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.094234466552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09701919555664, \"water_flow\": 14639.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.064292907714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.57162475585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.17379760742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.579345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.88508605957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.09401321411133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.072940826416016, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.509639739990234, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.67321014404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.72793960571289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.887062072753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.88765335083008, \"water_flow\": 3329.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.365806579589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.44446563720703, \"water_flow\": 3309.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.85676193237305, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.1810188293457, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.5101547241211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.51918029785156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.68204498291016, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.37931060791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.03724670410156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.5399932861328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.76181030273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.19070434570312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.59173583984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.5531463623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.77479553222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.88758850097656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.46249389648438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.48448181152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4016876220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.37660217285156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.21383666992188, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.25672912597656, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.81629180908203, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.70964813232422, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.53307342529297, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.11006927490234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.2665023803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.56726837158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4825439453125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.46614837646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.07393646240234, \"water_flow\": 143.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.11062622070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.00041198730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.29458618164062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.54380798339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.02626037597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.89869689941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.3401336669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.3826904296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.54056549072266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.56278991699219, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.50411224365234, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.29095458984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.42794799804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3075408935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.31503295898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.8303985595703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4556884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.45887756347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0464630126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.73460388183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.02304077148438, \"water_flow\": 163.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.52416229248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.80691528320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.2973403930664, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.45883178710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.10321044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.33074951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.38111114501953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.6872329711914, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.64852142333984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.80429077148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.43663024902344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.2222671508789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.62908935546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.76659393310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.31008911132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.05093383789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.19276428222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.10418701171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.01467895507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.94956970214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.80551147460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.61615753173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.99798583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.8324203491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16213989257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.4594955444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.07526397705078, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.55143737792969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.94361877441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.67485046386719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.24687194824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.60594177246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.1342544555664, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.57939147949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.81210327148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.39545440673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.21678161621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.56617736816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.36099243164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.85460662841797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.4803466796875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7301025390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.69163513183594, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.25919342041016, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.56409454345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.30045318603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0551528930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.7019271850586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.51421356201172, \"water_flow\": 209.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.62484741210938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.37052154541016, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.59537506103516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.30025482177734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6571044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.37188720703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.87351989746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5139617919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.20201110839844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.90814971923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.28925323486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.66619110107422, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.86943054199219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.05970001220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.46382904052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.06736755371094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.03936004638672, \"water_flow\": 438.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.71592712402344, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.77202606201172, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.4153060913086, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.45799255371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.10491943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.3045654296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.68758392333984, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.35580444335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.73981475830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.83866119384766, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.72406005859375, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.36524963378906, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.41902923583984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.74125671386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7891845703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.69920349121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.71112060546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.35135650634766, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.46585845947266, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.93934631347656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.62450408935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.37818908691406, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.21611022949219, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.65161895751953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.10990905761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.9587631225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.02713012695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.13993835449219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.15034484863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.33863067626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.23828125, \"water_flow\": 976.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.98970031738281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.84265899658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.17132568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.79125213623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.7406997680664, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.98880004882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.3253173828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.71139526367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.27922821044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9977035522461, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.25391387939453, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.69086456298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.8262939453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.40791320800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.6363525390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.32156372070312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.83758544921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.99375915527344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.48347473144531, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.15509033203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.5118179321289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.74211883544922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.61564636230469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.0299072265625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.17898559570312, \"water_flow\": 92.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.52925872802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.00119018554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.99938201904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.36444091796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14623.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0562744140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.00704956054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.80667114257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.87174224853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.76732635498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.239349365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.32036590576172, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.05474853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.63731002807617, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.76871109008789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.19208908081055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.590087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.16718673706055, \"water_flow\": 3326.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.15645980834961, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.730804443359375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.06327056884766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.6942138671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.54119873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.4583969116211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.34025573730469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0551300048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.00323486328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.73387145996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.39431762695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.95101928710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.83729553222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.73190307617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5227508544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.41587829589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.61802673339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2586669921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.59739685058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6160125732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.89413452148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.4566421508789, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35038757324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.14137268066406, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.9794692993164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.64801025390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.88536834716797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.71173858642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.93197631835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.92757415771484, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.679931640625, \"water_flow\": 119.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.14617919921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.43214416503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.08851623535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.99588012695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.67462158203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.29281616210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.103759765625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.73136138916016, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.87197875976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.30406951904297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.78408813476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.71829223632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.726318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.2778778076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0710906982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0264129638672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.25808715820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.49536895751953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.06049346923828, \"water_flow\": 153.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.10625457763672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.10836791992188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.41754150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.61404418945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.17169189453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9403839111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.99897003173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.93817901611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5760498046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.77422332763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.25274658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.65216827392578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.16382598876953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.41264343261719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.18811798095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.92764282226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.25301361083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.10770416259766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.81574249267578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.80372619628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.08832550048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.95972442626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.59778594970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.12367248535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.95335388183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.88668060302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.7176284790039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.04290008544922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.67484283447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.94853973388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.66683197021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.49769592285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.95747375488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.83326721191406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.40616607666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.59554290771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.37812042236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.00659942626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.06346893310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.96260070800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.11247253417969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.53764343261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.67853546142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.6199722290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.39119720458984, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.17080688476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.66478729248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.68610382080078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.89640045166016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.9642105102539, \"water_flow\": 227.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.5953598022461, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.25054168701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.14962768554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0839614868164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.38995361328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6349334716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.54713439941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.85646057128906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.18010711669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7877426147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.41593170166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.66352844238281, \"water_flow\": 117.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.99191284179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.5417251586914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.77690887451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.15558624267578, \"water_flow\": 443.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.56942749023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9697036743164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.27010345458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.34565734863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.10263061523438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.79620361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.69119262695312, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.12919616699219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.81047821044922, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.45105743408203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.273681640625, \"water_flow\": 117.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.56684112548828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.43545532226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.20162200927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.96537017822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.12538146972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.33470153808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.90513610839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.72168731689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.28498840332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.89437866210938, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1808090209961, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.57826232910156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.70894622802734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.83009338378906, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.03287506103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.39768981933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.2431411743164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.41221618652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.72871398925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.95099639892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.95507049560547, \"water_flow\": 983.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.16366577148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.72577667236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2699203491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.79048156738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.24261474609375, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.2583999633789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.56066131591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.16939544677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.58307647705078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.22272491455078, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.68331146240234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.18120574951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9889144897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.19758605957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.23704528808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.25650024414062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.90169525146484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.8270492553711, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.0361328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.3883285522461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1014633178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.13302612304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.38043212890625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.07391357421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.19255828857422, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.52769470214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.74652099609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.83734893798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.698856353759766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14611.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05025100708008, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05699920654297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.02631378173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.56440734863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.8047103881836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.2131233215332, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.984764099121094, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.143184661865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.42390441894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.675594329833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.20454406738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.41958236694336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.14714813232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.4560432434082, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.038333892822266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.451324462890625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.6356201171875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.35509490966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.67579650878906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.43758392333984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9719696044922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7568817138672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.55514526367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.1414031982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.26934814453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.65675354003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.65008544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.05177307128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.36590576171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.0756378173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.3561248779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6181182861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.14962768554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6196746826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1210479736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.9177017211914, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.95852661132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.888427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.73239135742188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7384033203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1569366455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.70701599121094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.70209503173828, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.76786804199219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5346908569336, \"water_flow\": 93.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.50972747802734, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.32933807373047, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.4609375, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.45571899414062, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.2552947998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8050079345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.35891723632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.07521057128906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.43284606933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.33731079101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.91001892089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.94696044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.22991943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.56878662109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.70106506347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.26473999023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1680908203125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.62420654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.33428955078125, \"water_flow\": 143.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.7232894897461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.27117919921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.34295654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.34506225585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.68211364746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.44692993164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.70790100097656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.88204956054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3919677734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8407211303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.90957641601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.95540618896484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.89610290527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.36540222167969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.74137115478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.00751495361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.70281219482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.447265625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.19181060791016, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.40647888183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.62438201904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.27409362792969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.6333236694336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.5699691772461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.19043731689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.18025207519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.12923431396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.58285522460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.51966857910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.82945251464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.69242858886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.10094451904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.93523406982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.45791625976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.48033142089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.57087707519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.077392578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.04224395751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.71509552001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.69163513183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.6416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.91850280761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.74896240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.33409118652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.49034118652344, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.58907318115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.13472747802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.4898910522461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.45282745361328, \"water_flow\": 233.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.80410766601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.36029052734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.2422103881836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.1950454711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.69511413574219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.43275451660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1572723388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0122528076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6674346923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.75733184814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.00898742675781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.35882568359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.40962982177734, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.97745513916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.6801528930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.48328399658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.51002502441406, \"water_flow\": 447.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.215087890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.38380432128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.14610290527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.80145263671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.29966735839844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.40703582763672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.00875091552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.12655639648438, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.39836883544922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.38114929199219, \"water_flow\": 131.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.56556701660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.9485092163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.198974609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.74305725097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.52932739257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.75485229492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.46376037597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.20038604736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.30856323242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.82882690429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.56375885009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0635757446289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.86923217773438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2845230102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.87638854980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.03815460205078, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.54708862304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.15265655517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.27079010009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.84086608886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.91166687011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.98442077636719, \"water_flow\": 1047.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.01280212402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.84845733642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.73529052734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.87812042236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.92422485351562, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.29558563232422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.91197967529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.28023529052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.62468719482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.99148559570312, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.17644500732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.78822326660156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.42832946777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.42316436767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.27190399169922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.1136245727539, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.1300048828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.74261474609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.92742919921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.79596710205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.54344940185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.43637084960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.86244201660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.79798126220703, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.3740005493164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.0629653930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.28777313232422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.561851501464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.62904739379883, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14599.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.40157699584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.94004821777344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.004886627197266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.72750854492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.581451416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.896705627441406, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.06059646606445, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.19802856445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.593875885009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.12712478637695, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.717464447021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.39043426513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.87493133544922, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.313743591308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.48776626586914, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.83256530761719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.24071502685547, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.7573013305664, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.36475372314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.51383972167969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.49407958984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.55064392089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.09652709960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.7526397705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.13848876953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.32916259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7394256591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.36253356933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.00743103027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.2821807861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.03163146972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.14016723632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0084686279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.34210205078125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.98429870605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0648193359375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1325225830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9467010498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.14732360839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6331024169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.10655212402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7818145751953, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7500762939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.00247192382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.37811279296875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.26544952392578, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.08832550048828, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.24173736572266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5496826171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.41993713378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.29513549804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9417266845703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.50698852539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.62916564941406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.17111206054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.0548095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.3798828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.5260772705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.187744140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.42221069335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7385711669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.20376586914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.72439575195312, \"water_flow\": 139.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.05500030517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.75303649902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.65493774414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.8876495361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.7937469482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.75436401367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.13473510742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.55850982666016, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.79951477050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.32740783691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.4117660522461, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.08065795898438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.30931854248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.76295471191406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.34581756591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.2972640991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.80198669433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.15457153320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.03486633300781, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.81904602050781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.13861083984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.63491821289062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.68543243408203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.46324157714844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.79777526855469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.96823120117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7203140258789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0419921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.20279693603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.87712097167969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.50093078613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.58700561523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.39093017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.71092224121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.40705108642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54936981201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.54615020751953, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.26119232177734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.17719268798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.50611114501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.17259979248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.01827239990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1513214111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.79911804199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.07633209228516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.99874877929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.9465560913086, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.2580795288086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.05326843261719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.0862045288086, \"water_flow\": 237.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.51805114746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.77535247802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.77417755126953, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.01923370361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.66328430175781, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.18914031982422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.48690795898438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.05075073242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0338134765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.95625305175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.13191223144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.09793853759766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.0767593383789, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.39545440673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.13029479980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.76001739501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.02894592285156, \"water_flow\": 453.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.36912536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.80430603027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.93084716796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.05989837646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.82392120361328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.06192779541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.12220764160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.35064697265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.30236053466797, \"water_flow\": 149.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.21800231933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.52449035644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.0040054321289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1083755493164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.13152313232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.19231414794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.3043670654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.83494567871094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.88152313232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.71275329589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7762451171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.66409301757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.63961791992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.13492584228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.53905487060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4805679321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.80309295654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.81704711914062, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.0602798461914, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.16783905029297, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.29532623291016, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.298095703125, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.03738403320312, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.95001220703125, \"water_flow\": 1051.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.71878814697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.36370849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.58245849609375, \"water_flow\": 1131.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.64144134521484, \"water_flow\": 1136.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.14242553710938, \"water_flow\": 1173.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.88047790527344, \"water_flow\": 1190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.59454345703125, \"water_flow\": 1237.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.93168640136719, \"water_flow\": 1240.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.45365142822266, \"water_flow\": 1244.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.4997329711914, \"water_flow\": 1353.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.49354553222656, \"water_flow\": 1364.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.0468521118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.61528778076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.21533203125, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.9681396484375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.56327056884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.40473175048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.6235122680664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.40837860107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.53276062011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.36756134033203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.1771469116211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.94225311279297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.653934478759766, \"water_flow\": 108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.57144165039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.77559661865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.959007263183594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.13882827758789, \"water_flow\": 14021.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 567.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.87354278564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.80381393432617, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.82494354248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.75605773925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.73832702636719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.37748336791992, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.584144592285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.40447235107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.81981658935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.54896545410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.54558181762695, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.75664138793945, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.070064544677734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.04656219482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.08723831176758, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.27435302734375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.59293365478516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.4361572265625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.11805725097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4737091064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0590057373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4768829345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.92579650878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.37229919433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.32888793945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.05484008789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5205078125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.62123107910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.56964111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.43014526367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.68154907226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.44766235351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.97288513183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.07212829589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.98200988769531, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.76617431640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.45591735839844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.88230895996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.42657470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6772918701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.22256469726562, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.49395751953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0045166015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.76089477539062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.53426361083984, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.2632598876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.55641174316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.27774047851562, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.58152770996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.90606689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.81716918945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.12144470214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.0596160888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.85540771484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.00462341308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.07635498046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6508331298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.84735107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.47511291503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.75830078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8962860107422, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.43133544921875, \"water_flow\": 80.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.37181091308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.6617431640625, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.42611694335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.39468383789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.42442321777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.22142028808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.34877014160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.5625991821289, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.67911529541016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.53750610351562, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.56734466552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.48668670654297, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.82268524169922, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.37953186035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.09638977050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.73350524902344, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.72370147705078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.06000518798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.56891632080078, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.58265686035156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.41242980957031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.04442596435547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.42181396484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.19979858398438, \"water_flow\": 94.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.1502456665039, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.23519134521484, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.2365493774414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.47408294677734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.44068908691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.34971618652344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.17871856689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.3434829711914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.61531829833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.45388793945312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.72097778320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.58524322509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.88005065917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.33893585205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.92817687988281, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.78072357177734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.22484588623047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.3783950805664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.58263397216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.28636932373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.10950469970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.62696838378906, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.70030975341797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.66207122802734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.8910140991211, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.92727661132812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.07788848876953, \"water_flow\": 244.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.30963897705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9841537475586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.81146240234375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.37486267089844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.83351135253906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.0246810913086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.26799774169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.69744873046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.226806640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.4214096069336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.97883605957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.70476531982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.186279296875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.67279052734375, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.23313903808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.0789566040039, \"water_flow\": 465.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.11911010742188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.80402374267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.85401916503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.26971435546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.22647094726562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.48179626464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.13675689697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.91930389404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.82703399658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.14666748046875, \"water_flow\": 153.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.62754821777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.51380157470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.04438018798828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.56224060058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.21388244628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.28736114501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.51227569580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.53251647949219, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.73236846923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85265350341797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.79937744140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.70822143554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0308074951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.17691802978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.71931457519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.18067932128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.67623138427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.83184051513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.51319122314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.37598419189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.23822021484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.732421875, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.0080337524414, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.39816284179688, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.74163055419922, \"water_flow\": 1121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.60258483886719, \"water_flow\": 1128.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.10555267333984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.088623046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.31413269042969, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.02418518066406, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.38387298583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.04926300048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.80022430419922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.89696502685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.40139770507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.57242584228516, \"water_flow\": 1365.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.02275085449219, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.4192123413086, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.49264526367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.12532043457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.49006652832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.30253601074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.77495574951172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.77268981933594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.50144958496094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.54574584960938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.029117584228516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.17092514038086, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.61742401123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.22393035888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.28922653198242, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07631301879883, \"water_flow\": 14004.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 566.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.45341491699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.85223388671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.04352569580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.97834777832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.76372528076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.133216857910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.169776916503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.09466552734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.7589225769043, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.27285385131836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.14231491088867, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.095584869384766, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.53202819824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.215972900390625, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.32487487792969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.18863677978516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.33293914794922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.27464294433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.75831604003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.60076904296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.10060119628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.0215606689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.20347595214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7202606201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.36911010742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.56857299804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.22268676757812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9167938232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.11129760742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.78741455078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.68190002441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.41944885253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.34927368164062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.42970275878906, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.5755615234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.58795166015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.63800048828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6297149658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.02731323242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0937957763672, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.19810485839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.20236206054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7036895751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.10635375976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.07386779785156, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0259552001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.97811889648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.9172821044922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5713653564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.22586059570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.51034545898438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.73472595214844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6146240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.3071746826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.42352294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.14633178710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.64285278320312, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8593292236328, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1515655517578, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.97991943359375, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.08685302734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.19522094726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2796173095703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.36038208007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4768524169922, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.10401916503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8381805419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.37220764160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.04270935058594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.99768829345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.76335906982422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.08750915527344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.5220947265625, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.27122497558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.96802520751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.07488250732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.86447143554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.79512786865234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.68182373046875, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.33455657958984, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.5106430053711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.98867797851562, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.74784088134766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.1601333618164, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.73448181152344, \"water_flow\": 95.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.21879577636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.86256408691406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.36998748779297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.10645294189453, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.7342529296875, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.55310821533203, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.90067291259766, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.60285186767578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.60763549804688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7821044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.86717224121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.5674057006836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.25260162353516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95928955078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.15544891357422, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.14186096191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.32621002197266, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.83926391601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.38743591308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.44717407226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.6643295288086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.12528228759766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.16870880126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.73046875, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.73494720458984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.81781005859375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.13938903808594, \"water_flow\": 299.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.25740814208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.45572662353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.21209716796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.17511749267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.31841278076172, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.67346954345703, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.25296020507812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.09217071533203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.39788055419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.05914306640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7596435546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.15217590332031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.85954284667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00029754638672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.02317810058594, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.31963348388672, \"water_flow\": 597.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.83756256103516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.77978515625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.04365539550781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.80453491210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.9988021850586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.32245635986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.17115783691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.98333740234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.23908233642578, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.43292236328125, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.47504425048828, \"water_flow\": 173.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.34253692626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.96121215820312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.64630889892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.17920684814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.90961456298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.92205810546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.00296020507812, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.55740356445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.97382354736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.29682159423828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.62887573242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6431121826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.93746948242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.83582305908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.75117492675781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.98015594482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.97034454345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.37946319580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.90200805664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.76036071777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.56500244140625, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.39075469970703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.99990844726562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.56460571289062, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.73546600341797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.3170394897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.7953872680664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.35020446777344, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.64087677001953, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.8352279663086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.24053955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.88660430908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.2022933959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.74800872802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.03504943847656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.4211196899414, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.38047790527344, \"water_flow\": 1400.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.45406341552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.66366577148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.27467346191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.60713958740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.27229309082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.39366149902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.80401611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.87057495117188, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.02232360839844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.9473762512207, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.794891357421875, \"water_flow\": 119.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.025333404541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.773895263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.032310485839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05060577392578, \"water_flow\": 13992.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 565.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.24457931518555, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.78514099121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.54754638671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.23342895507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.733882904052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.70829772949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.89082336425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.136810302734375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.136478424072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.426692962646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.079036712646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05015182495117, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.24271774291992, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.44510650634766, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.07650756835938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.80008697509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.9954605102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.04277038574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.85154724121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.88067626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.9549560546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.08143615722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.97393798828125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1715545654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.19007873535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7632293701172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.94081115722656, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.99813842773438, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.30391693115234, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.65460205078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.5570526123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.87017822265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.23059844970703, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.63339233398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.2940216064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.88832092285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.59002685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.13543701171875, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.8753204345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6911163330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.42417907714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.21102905273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.92352294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.2104034423828, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.73794555664062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8337860107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.77365112304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.24192810058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6013946533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.7411651611328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.45272827148438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.971923828125, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9650115966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.57958984375, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6477813720703, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.3943634033203, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.44805908203125, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.02133178710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.984130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2348175048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.59561157226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.35533142089844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8590545654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.53455352783203, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9114532470703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.36923217773438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.69424438476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6487579345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.12896728515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.09902954101562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.40673828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.23399353027344, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.843017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8101348876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.06651306152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.09072875976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.93413543701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.40374755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.95492553710938, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.66624450683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.19661712646484, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.01932525634766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.36896514892578, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.89521026611328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.8743667602539, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.84909057617188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.22899627685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.20660400390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.63256072998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.40316772460938, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.9803695678711, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.43128967285156, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.78035736083984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.32457733154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.60356140136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.13585662841797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.30306243896484, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.35904693603516, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.42784118652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.43389129638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.28218841552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.14403533935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.41580963134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.0670394897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.54364013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.9485092163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.45012664794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.3806381225586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.94757080078125, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.83647918701172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.59800720214844, \"water_flow\": 307.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.02022552490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.51385498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.57592010498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.7374038696289, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.37844848632812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.21031188964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.23735046386719, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.11371612548828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.6059799194336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.92506408691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.40515899658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.85725402832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.32613372802734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.22602844238281, \"water_flow\": 608.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.71330261230469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.26051330566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.60102844238281, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.68721008300781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.44406127929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.67203521728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.29620361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1137924194336, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.28499603271484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.81360626220703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.60905456542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.76305389404297, \"water_flow\": 180.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.57064056396484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.95248413085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.86701202392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.55155944824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.87373352050781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.37413787841797, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.47586059570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.18053436279297, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.25377655029297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.59191131591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.89718627929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.6886978149414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.32720947265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.28804779052734, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.75740814208984, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.89103698730469, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.36697387695312, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.1865234375, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.41645050048828, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.10506439208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.07942962646484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.90650177001953, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.91584014892578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.5372543334961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.15164947509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.476318359375, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.1982650756836, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.611572265625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.89088439941406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.155517578125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.6849594116211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.25462341308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.51730346679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.23131561279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.83146667480469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.44464111328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.98509979248047, \"water_flow\": 1404.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.25779724121094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.04805755615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.51648712158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.37964630126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.05177307128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.2973861694336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.13032531738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.65216827392578, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.00958251953125, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.44571304321289, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.38714599609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.4427604675293, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06018829345703, \"water_flow\": 13972.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 564.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.616668701171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.82601165771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.88114166259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.45349884033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.15133285522461, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.65250015258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.53279113769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.34111785888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.34528350830078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.262672424316406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.5834732055664, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.47521209716797, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.57427215576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85834503173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.47415161132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.65106201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.28236389160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.07614135742188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.08291625976562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.29595947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0938720703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7021942138672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.23690795898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.68243408203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.51158142089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.43728637695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.0981674194336, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.60379028320312, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.56209564208984, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.12570190429688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.3253936767578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9814453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.78182983398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.2164306640625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.05734252929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.8001251220703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.45460510253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.2509307861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.9106903076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8462371826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.53907775878906, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5143280029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.080810546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.52044677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.7354736328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.08787536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.19395446777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1167755126953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.33604431152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.92105102539062, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.98509216308594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.05776977539062, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.24472045898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.96624755859375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4669647216797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.86163330078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.22113037109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.67063903808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.01998901367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.38597106933594, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6583251953125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.0081329345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.78094482421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.5153350830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.4835205078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.5865936279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7717742919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.06729125976562, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.87294006347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.88327026367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.50437927246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.90727996826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.30583953857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.63359069824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.72360229492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.8803482055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.03717041015625, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.75911712646484, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.35875701904297, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.56011199951172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.21366882324219, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.01829528808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.8934555053711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.34127807617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.79796600341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.19727325439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.48516082763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.94837951660156, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.32308959960938, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.35702514648438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.43836975097656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.99496459960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.16162109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.41996765136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.2510757446289, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.75399780273438, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.39308166503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.00678253173828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.26709747314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.57413482666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.05007934570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.68521118164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.57242584228516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.87821197509766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9662094116211, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.34320831298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.1711196899414, \"water_flow\": 328.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.51853942871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.04847717285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.9031982421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.51714324951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.88169860839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.31855010986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.56616973876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00044250488281, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0000991821289, \"water_flow\": 647.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0354995727539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.77497100830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.54312133789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00080108642578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.74362182617188, \"water_flow\": 617.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.44646453857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.55199432373047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.57264709472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.82858276367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.22154235839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.20529174804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.81965637207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.27396392822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.79122161865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.22440338134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.57984924316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7483139038086, \"water_flow\": 186.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.53946685791016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.25753784179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.04194641113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.36663818359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.5182113647461, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.2242431640625, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.67417907714844, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.56221771240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.04425811767578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.51311492919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.00103759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.00004577636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.73146057128906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.99115753173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.12247467041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.30982208251953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.79955291748047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.4295883178711, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.65076446533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.15731048583984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.85076904296875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.90326690673828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.78356170654297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.74068450927734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.93344116210938, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.28950500488281, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.87838745117188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.45520782470703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.35556030273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.4387435913086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.17227935791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.09983825683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.25740814208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.7577896118164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.09759521484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.30812072753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.86676788330078, \"water_flow\": 1414.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.85362243652344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.39124298095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.9781265258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.60581970214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.42166137695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.23397064208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.89320373535156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.12452697753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.13549041748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.87619400024414, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.22335433959961, \"water_flow\": 154.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.59031677246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05015563964844, \"water_flow\": 13959.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 563.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.22066116333008, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.40106201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.41748809814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.2549934387207, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.386070251464844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.893951416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.98929214477539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.358062744140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 125.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.064823150634766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.73641204833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.22329711914062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.61687469482422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.53681182861328, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.54241180419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.09609985351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.96113586425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.13412475585938, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.6023941040039, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7164077758789, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.3342514038086, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.38656616210938, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.03663635253906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.71156311035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.13340759277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.91741943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.95933532714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.26852416992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.01939392089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.36883544921875, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.50350189208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.41285705566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.13723754882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.6118621826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.821044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.1110076904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.1366424560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.46351623535156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.77877807617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.46435546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.18624877929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6351318359375, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6317901611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.23431396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.5890350341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.28900146484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.67550659179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.3892364501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.31802368164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.69613647460938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9440155029297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.52081298828125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.8936004638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.43154907226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.59194946289062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.52015686035156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6027069091797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.28358459472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0096893310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.98342895507812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0806121826172, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.60028076171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.21932983398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.8470001220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 170.11398315429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.43080139160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.48373413085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.12962341308594, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.95420837402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.47247314453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0365447998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.71188354492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.6634750366211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.14356994628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.02165985107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.91172790527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.75239562988281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.64706420898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.51305389404297, \"water_flow\": 166.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.7341537475586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.37782287597656, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.0324935913086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.82909393310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.25350952148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.54930877685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.91598510742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.98883056640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.81752014160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.84774780273438, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.93112182617188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.63617706298828, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.94660186767578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.7474594116211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.19975280761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.32456970214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7997055053711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.64644622802734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1889877319336, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.7935562133789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.89751434326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.06967163085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.09012603759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.331298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.10211944580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.89219665527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.88713073730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.35970306396484, \"water_flow\": 338.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.05712127685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.51581573486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.34332275390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.57200622558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.00501251220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.96537017822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4095458984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.01006317138672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 581.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 131.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 801.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.47052001953125, \"water_flow\": 623.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.58384704589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.69103240966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43716430664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.02526092529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.15374755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.35899353027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.79537963867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.05665588378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.22749328613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.22502899169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.48453521728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.94190216064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.1446762084961, \"water_flow\": 192.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.27484893798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.32401275634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.56487274169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.09760284423828, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.87455749511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.3448257446289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.61878967285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43113708496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.69839477539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.41876220703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.0189208984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.48253631591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.6578598022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.39398193359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.35832214355469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.17792510986328, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.208740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.96125030517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.27415466308594, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.9230728149414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.68267059326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.25970458984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.06749725341797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.99382781982422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.10242462158203, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.95936584472656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.41070556640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.43783569335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.53182983398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.89012908935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.73065185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.57623291015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.24456787109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.81688690185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.61791229248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.8111343383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.14484405517578, \"water_flow\": 1420.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.83560943603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.1197509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.02253723144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.51888275146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.83726501464844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.4533920288086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.748783111572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.968788146972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.324764251708984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1566.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13938.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 562.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.27756118774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.22663116455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.07052612304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.89262008666992, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.46968078613281, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.615943908691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.09306335449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.2492790222168, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 139.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.24109649658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.35562896728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9261703491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.89392852783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.07459259033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.6835708618164, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.8501968383789, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8141860961914, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.6153335571289, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.49673461914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.19322967529297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.8226547241211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.49815368652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8189697265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.35137939453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6073760986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.010498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1494140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.06935119628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8079605102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.565185546875, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.85343170166016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.76805114746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1440887451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.84266662597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.8587188720703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.6722412109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.95297241210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.237548828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.37200927734375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.70249938964844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.72540283203125, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.2397918701172, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.96615600585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.48452758789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.39329528808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.86721801757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.74380493164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.2242889404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.2948760986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.0928192138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.05267333984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3738555908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.15577697753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.59292602539062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.66343688964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.08697509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.05877685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.85671997070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8777313232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4710693359375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.50843811035156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7347412109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.7216033935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 170.3699493408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 171.83494567871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.14175415039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7222442626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.478271484375, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.8188018798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.4049530029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.48126220703125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.16534423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.8080062866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.18824005126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.77320098876953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.2784194946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.18632507324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.49199676513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.49214935302734, \"water_flow\": 172.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.5013656616211, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.70018005371094, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.84736633300781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.77890014648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.17972564697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.70735168457031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.14961242675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.90614318847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.82720184326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.75408935546875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.47383117675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.2939682006836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.50725555419922, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.81218719482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.15564727783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.75669860839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.20182037353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.1272201538086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.01472473144531, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.95357513427734, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.60832214355469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.19306945800781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.69526672363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.757568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.57133483886719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.50466918945312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.1502914428711, \"water_flow\": 339.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.5269775390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.03507232666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9746322631836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.15843963623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.95919036865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.88043975830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.39216613769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.06971740722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 580.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 818.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.13668823242188, \"water_flow\": 630.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.56432342529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.13630676269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.81755065917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.39503479003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.13262939453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.54373931884766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.34178924560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.79698944091797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.8157958984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.11271667480469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.3384017944336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.15018463134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.3521499633789, \"water_flow\": 197.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.89115905761719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.65311431884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.88031768798828, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.17671966552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.84439086914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.64030456542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.623046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.22435760498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.22106170654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.76329803466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.712646484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.56917572021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.50617980957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.91492462158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.97635650634766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.24596405029297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.18440246582031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.70182800292969, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.11912536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.50020599365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.52957916259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.33077239990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.73399353027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.83016967773438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.28260803222656, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.48355102539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.28219604492188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.47032928466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.41094207763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.67970275878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.66889190673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.31201934814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.81124877929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.12476348876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.79647064208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.02531433105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.678184509277344, \"water_flow\": 1427.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.56483459472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.66510009765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.80390930175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.29896545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.59036254882812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.31603240966797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.955360412597656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.21381378173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1565.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12166.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 561.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.357234954833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.03530883789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.88531494140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05023956298828, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05550765991211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.163604736328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.25825119018555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.736629486083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 151.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.39078140258789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.43241119384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.3083724975586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.91091918945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.17465209960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.56678771972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.26091766357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.62798309326172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.10967254638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.7722396850586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.64382934570312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.42567443847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2327880859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8402862548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9718780517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.24667358398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9009552001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.48780822753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.03008270263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.98944091796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.64771270751953, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.49799346923828, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.03176879882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.7704315185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3472900390625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.24008178710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.5235137939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.9617156982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.1797332763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.42514038085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2435302734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0606689453125, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.39157104492188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.96206665039062, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.85147094726562, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.3856658935547, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.14015197753906, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.88522338867188, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7322998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.6892852783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.22744750976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.6071319580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.71945190429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.77630615234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.45143127441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.65162658691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.45632934570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7791290283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.16136169433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.99668884277344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9499969482422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.74070739746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.79483032226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 169.02108764648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 172.88397216796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 170.56744384765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.37643432617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.09132385253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.29335021972656, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.64495849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.14625549316406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.09339904785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.61595153808594, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.28154754638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.16731262207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.91246795654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.50137329101562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.2633056640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.56161499023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.02995300292969, \"water_flow\": 189.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.49134826660156, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.80669403076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.53184509277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.81414031982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.58184051513672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.09465026855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.7550277709961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.94243621826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.19304656982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.1317367553711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.52014923095703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.0564956665039, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.5634994506836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.88912963867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.09906005859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.28401947021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.40812683105469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.86457061767578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.1773452758789, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.84490966796875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.29015350341797, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.82113647460938, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02857208251953, \"water_flow\": 114.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.62487030029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.45846557617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.06913757324219, \"water_flow\": 141.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.40845489501953, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.14159393310547, \"water_flow\": 501.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.83941650390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2320785522461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.08549499511719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.79208374023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.58033752441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.62701416015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.31108093261719, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 579.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 129.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 840.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0859603881836, \"water_flow\": 638.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.7126693725586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.23473358154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.0047836303711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.86282348632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.36592102050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.09307098388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.06370544433594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.13227081298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.45938873291016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.27516174316406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.40654754638672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.2138900756836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.55133819580078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.61597442626953, \"water_flow\": 251.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.01331329345703, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.62429809570312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.60208892822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.30552673339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.22614288330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.49102020263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.8397445678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.31636047363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.92182922363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.7830581665039, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.82696533203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.0553207397461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.41474151611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.23382568359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.48792266845703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.6928939819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.73373413085938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.06764221191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.78793334960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.92378234863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.11347961425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.60691833496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.35145568847656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.38679504394531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.35296630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.24111938476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.32322692871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.25564575195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.12960815429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.12029266357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.91429901123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.26045227050781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.19567108154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.40217590332031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.41988372802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.00173950195312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.490623474121094, \"water_flow\": 1433.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.17604064941406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.594120025634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.64075469970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.40559005737305, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.378482818603516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.7576904296875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.11056137084961, \"water_flow\": 1564.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9487.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2659.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.25714874267578, \"water_flow\": 560.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.85268020629883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.126564025878906, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05003356933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.934879302978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.623050689697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.40846633911133, \"water_flow\": 160.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.8698616027832, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.11971282958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.67129516601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.94579315185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.67887115478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.86763000488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.15113830566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.20720672607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7675323486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.70928955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.95962524414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.42337036132812, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.74099731445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.7154541015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.90243530273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5192413330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.43821716308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.947509765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.41162872314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.00782775878906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.94253540039062, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.56806945800781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1730499267578, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.9309539794922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.75643920898438, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.64785766601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.27902221679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.0344696044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.669189453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.47784423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.50146484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5075225830078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.69711303710938, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5403594970703, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7637481689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.1121063232422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.68202209472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.39520263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.9112548828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.65879821777344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.58404541015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.5402069091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.71913146972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.87843322753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.54702758789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.35287475585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.19635009765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.440673828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.75106811523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8446044921875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.0860595703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.43739318847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.00413513183594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.41297912597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 166.05868530273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 166.9590301513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.00808715820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.6143035888672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.95614624023438, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.66360473632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.9065399169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.2262725830078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.75665283203125, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.09652709960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.94511413574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.72804260253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.83318328857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.38811492919922, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.45515441894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.2987289428711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.8301010131836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.78230285644531, \"water_flow\": 200.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.06672668457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.34494018554688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.27391052246094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.1626205444336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.63792419433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.86500549316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.15260314941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7881622314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.19915008544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.82847595214844, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.99897766113281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.38735961914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.70970153808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.11840057373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.64897918701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.46443176269531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.40255737304688, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.16618347167969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.70496368408203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.69808959960938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.20587158203125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.68023681640625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.3460922241211, \"water_flow\": 125.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.93230438232422, \"water_flow\": 137.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00008392333984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00000762939453, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00025177001953, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00144958496094, \"water_flow\": 530.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.65470886230469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.36540222167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.05899810791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.09449005126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.77361297607422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00215911865234, \"water_flow\": 578.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 128.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.02021026611328, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.08712768554688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00059509277344, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 847.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.70364379882812, \"water_flow\": 646.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.24168395996094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.599609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.59964752197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.59342956542969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.12078094482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.07011413574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.3504638671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.48281860351562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.04552459716797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.74000549316406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.1841049194336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.02135467529297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.19867706298828, \"water_flow\": 266.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.35919952392578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.49381256103516, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.24890899658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.90523529052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.32794189453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.28375244140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.22052764892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.66831970214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.9594955444336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.0261459350586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.87423706054688, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.47223663330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.33155822753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9419174194336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.50580596923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.28413391113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.80005645751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.63275909423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.83876037597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.02201080322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.3539047241211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.78703308105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.43202209472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.37638854980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7119369506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.30903625488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.55167388916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.85173797607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.25066375732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.5698013305664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.10826873779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.55693054199219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6579360961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.65831756591797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.46537017822266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.05159759521484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.98615264892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.19301223754883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.979244232177734, \"water_flow\": 1434.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.558433532714844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.65052795410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.95180130004883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.16194152832031, \"water_flow\": 1542.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050048828125, \"water_flow\": 1554.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9445.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2658.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05431365966797, \"water_flow\": 557.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 175.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 174.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 173.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050777435302734, \"water_flow\": 172.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05571746826172, \"water_flow\": 170.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.078739166259766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.11961364746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.32974243164062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.99890899658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.5419921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.96366119384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.1671371459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6292266845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.09542846679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2752685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7904510498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5640106201172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.19496154785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0345916748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.9727783203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.22888946533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.57665252685547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.84398651123047, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.56844329833984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.94793701171875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.00717163085938, \"water_flow\": 115.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7863998413086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.55633544921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.44659423828125, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.1324005126953, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.63540649414062, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1749267578125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.0533447265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.256591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.16378784179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.1447296142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.23387145996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.43927001953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.9942169189453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9321746826172, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.9130401611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.59605407714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.0400848388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.441650390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.68569946289062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.85597229003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.2438507080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.48666381835938, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.29090881347656, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.1326904296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0547637939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.48532104492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6324920654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6204376220703, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.49026489257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.96151733398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.08702087402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.0614013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.99644470214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.37246704101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.1808624267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.34104919433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.8677978515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.6988983154297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.9039764404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.39732360839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.9905242919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.50015258789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.00747680664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.1494369506836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.96078491210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.47693634033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.31464385986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.17141723632812, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.56251525878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.0683364868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.667724609375, \"water_flow\": 204.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.59744262695312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.03377532958984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.19813537597656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.33547973632812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.15715026855469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.70257568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.5392608642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.08909606933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.83917236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.3362808227539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.93064880371094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.35548400878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.06202697753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.97836303710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.90752410888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.4940414428711, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.05499267578125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.47211456298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.05894470214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.60797882080078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.29810333251953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.66644287109375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.92940521240234, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0176773071289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.25929260253906, \"water_flow\": 546.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.14380645751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.6743392944336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.67406463623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.25148010253906, \"water_flow\": 577.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.32524871826172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.70914459228516, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.271240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.48106384277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00251770019531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 853.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.23355865478516, \"water_flow\": 657.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.80374145507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.57846069335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.98584747314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.18143463134766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.96024322509766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8349380493164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.8526382446289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.08755493164062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.55944061279297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.25464630126953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.17801666259766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.24583435058594, \"water_flow\": 279.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.25201416015625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.70330047607422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.22344970703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.83529663085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.9863052368164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.5113754272461, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.09709930419922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.94164276123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.20346069335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.28965759277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.79782104492188, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.69672393798828, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.63382720947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.06673431396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.42810821533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.46083068847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.2479476928711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.36804962158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.5784912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8127670288086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.59717559814453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.21548461914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.4375991821289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.21492767333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.68248748779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.93116760253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.62095642089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.58074951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.60835266113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.23600769042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.87809753417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.86564636230469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.82743835449219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.22537231445312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.867431640625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.32244110107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.0378189086914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.25062561035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.473697662353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.18768310546875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07004165649414, \"water_flow\": 1447.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1531.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1538.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9321.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2657.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050174713134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.93817138671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.981468200683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.21906661987305, \"water_flow\": 356.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 351.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.20659637451172, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.15998077392578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.59899139404297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.77975463867188, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.84373474121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.28941345214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.77458953857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.8824920654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.66336059570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2628936767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.95240783691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.97500610351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31491088867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.06266021728516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.66190338134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.8814468383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.5027084350586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.25794982910156, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.07186889648438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.2715835571289, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.19712829589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6007843017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.08567810058594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6283721923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.12527465820312, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.52197265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.39410400390625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.5806884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.61135864257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.3976287841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.2648468017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.88140869140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.80503845214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.11363220214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.3053436279297, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.33779907226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.41639709472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.89016723632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.25791931152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.14390563964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.98553466796875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.4646759033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6222381591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5341033935547, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5424346923828, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.13319396972656, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.15306091308594, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.66561889648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6651611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.80804443359375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6055145263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.49176025390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.63768005371094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.67465209960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.74850463867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.80108642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.35621643066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.2932586669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.83059692382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.16868591308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.16860961914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.12570190429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.99607849121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.35150909423828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.01031494140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.92517852783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.36410522460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.40715026855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.4684066772461, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.11709594726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.11707305908203, \"water_flow\": 210.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.33196258544922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.70259094238281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.46826934814453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.4959945678711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.25978088378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5036163330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.02650451660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.10162353515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.84132385253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.32968139648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.10279846191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.79031372070312, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.31651306152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.84962463378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.05076599121094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.632568359375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8680419921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.54963684082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.42898559570312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.70849609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.98477935791016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.28446960449219, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.6234359741211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.908447265625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.01290130615234, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 558.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00001525878906, \"water_flow\": 566.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 573.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0338363647461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.55638885498047, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.27497100830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.16726684570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.386474609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.55992889404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00698852539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1523208618164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00042724609375, \"water_flow\": 858.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.060791015625, \"water_flow\": 667.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.91020202636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.59549713134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.58443450927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4389419555664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.98958587646484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.84319305419922, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.4784927368164, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.4175033569336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.92587280273438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.17932891845703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.516845703125, \"water_flow\": 340.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.58552551269531, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.2478256225586, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.46849060058594, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.3366470336914, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.29878234863281, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.89595794677734, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.60708618164062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.79154968261719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.20353698730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.83328247070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.58702087402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.70036315917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.63823699951172, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.94769287109375, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.61101531982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.0479965209961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.91329956054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.82689666748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.76624298095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.95736694335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.91707611083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.99244689941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.36675262451172, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.75540924072266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.62246704101562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.14926147460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.61202239990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.66291046142578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.89310455322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.27635955810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.38037872314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.57379150390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.6737060546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.10145568847656, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.4542236328125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.68546295166016, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.76203155517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.12586975097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.961910247802734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.655181884765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05573654174805, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9291.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 107.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2656.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.10799789428711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.84099578857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.75529479980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.87779998779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.427303314208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.10795593261719, \"water_flow\": 334.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0504264831543, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.4658203125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.06581115722656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6279067993164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.3690414428711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.04573059082031, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.17069244384766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.97369384765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.146240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.64073181152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.6636505126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.66546630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.31351470947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.9194564819336, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.96398162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.89495849609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.98348999023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.3070068359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.98931884765625, \"water_flow\": 146.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.83306121826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.85020446777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.44369506835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.82064819335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.93536376953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.50518798828125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5336151123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.44480895996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.19073486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.45741271972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.59719848632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.00140380859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.94894409179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.16998291015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.92079162597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.8928680419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.5780792236328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.2656707763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.36061096191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.94998168945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.67376708984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.27359008789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.44485473632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.5245819091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.18533325195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.37222290039062, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.21519470214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.246826171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8672332763672, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4834442138672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7158660888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.86407470703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.66746520996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.33798217773438, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.04302978515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.68643188476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.3631591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.7819061279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.6824951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.23573303222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.17385864257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5305633544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.86083984375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0271759033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.514404296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.01351928710938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.9754867553711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.13044738769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.98004150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.15135192871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.8361587524414, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.8642692565918, \"water_flow\": 219.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.23808288574219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.12894439697266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.87640380859375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.41799926757812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.88813781738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.02701568603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.56060791015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.84440612792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.72928619384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.68235778808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.35946655273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.767333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.88299560546875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.79698181152344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.62710571289062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.81246948242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.13856506347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6841583251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.45361328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.84062194824219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.77359008789062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.55989074707031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.46468353271484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.1480712890625, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.02103424072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.54095458984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.08695983886719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11788177490234, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00016021728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0000228881836, \"water_flow\": 125.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.01612854003906, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.12584686279297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.01526641845703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.97149658203125, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.00949096679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.72171783447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.03208923339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.4761962890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.96721649169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.55581665039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.28473663330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.41248321533203, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00005340576172, \"water_flow\": 1552.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.02471923828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.21749877929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.85200500488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.2594223022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.68265533447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.06141662597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.0402603149414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.31648254394531, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.62684631347656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.30570220947266, \"water_flow\": 352.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.5509262084961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9052734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.29533386230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.20886993408203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.16320037841797, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.03443908691406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.60041809082031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0199966430664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.51486206054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.58473205566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.25848388671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.09367370605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.12081909179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.385986328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.5995101928711, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.52580261230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.0622329711914, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.17132568359375, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.84150695800781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.96231842041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.77584075927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.92918395996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.01470947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.62752532958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.58770751953125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.39265441894531, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.84672546386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.03964233398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.71475219726562, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.47437286376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.3889389038086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.57975006103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.10059356689453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.42626953125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.21733093261719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.03910827636719, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.478179931640625, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.54941177368164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.19617462158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.14418029785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.49655532836914, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9261.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2655.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.53739929199219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.68116760253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.95635986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.91144561767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.771583557128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05992126464844, \"water_flow\": 134.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 185.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.106143951416016, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.83768463134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.58836364746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.09416961669922, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.81778717041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.63744354248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.50972747802734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.24129486083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.81594848632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.83810424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9263153076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.29320526123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.68344116210938, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.6483154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.593505859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.7342300415039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.41146850585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.46495819091797, \"water_flow\": 151.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.02828979492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5383758544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.543212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6321258544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.31251525878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1687774658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.47593688964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.955810546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.32839965820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.817138671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.72132873535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.5036163330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4009552001953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4378204345703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.39369201660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.35252380371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.22299194335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 174.0681915283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.76275634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.53599548339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.7134552001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.64044189453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.67596435546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.50624084472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.05776977539062, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.048828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.15682983398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.97947692871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.78395080566406, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6053009033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.4219970703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.1156768798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.78366088867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.78221130371094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.58872985839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.81541442871094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.04518127441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.0905303955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.76858520507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.81600952148438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2404327392578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.4774627685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.64849853515625, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.88603210449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.29476165771484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.3542709350586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.50176239013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.24285125732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.41940307617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.85030364990234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.71725082397461, \"water_flow\": 238.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.24674224853516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.97964477539062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.6385269165039, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.0576400756836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.76385498046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.95787811279297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.75139617919922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0542221069336, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.89351654052734, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9938201904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7334442138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.9977264404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.1363983154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.27139282226562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4681854248047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9881134033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.88365173339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.76414489746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.7067413330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.9833755493164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.45118713378906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.08411407470703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.73794555664062, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.16852569580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.73966217041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.29702758789062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.68170166015625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.18143463134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.35208892822266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.006103515625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0, \"water_flow\": 124.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.10450744628906, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.83666229248047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.26256561279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.01465606689453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.1231918334961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.14888763427734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.91207885742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.05633544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.03345489501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.05707550048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.74642944335938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.8055648803711, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.5657730102539, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.16358184814453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1070556640625, \"water_flow\": 1868.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.88339233398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.56309509277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.74038696289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.76236724853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.04976654052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.68408203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.12779998779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.2961654663086, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.53160095214844, \"water_flow\": 363.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.25041198730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.80241394042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.51400756835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.31879425048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.70459747314453, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.14822387695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.64561462402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.3966064453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.7110824584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.45378875732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.02293395996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.0798110961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.42799377441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.36724090576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.17703247070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.2261734008789, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.42581176757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4569320678711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.53324127197266, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.50484466552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.24366760253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.28547668457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.63545227050781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.0660171508789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.47384643554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.50997161865234, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.29612731933594, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.82215881347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.46308135986328, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.70336151123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.07424926757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.64231872558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.60233306884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.27986145019531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.22531127929688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.09742736816406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.07424545288086, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.25214767456055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.020111083984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.89693069458008, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05116653442383, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9230.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2654.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05171585083008, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.33302307128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.32384490966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.79886627197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.465702056884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.27307891845703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 167.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.20717239379883, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.48011779785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.3625717163086, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.5767593383789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.29278564453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8563232421875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.41143035888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.51628875732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8054428100586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2085418701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.39007568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.07996368408203, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.20234680175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.77577209472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.74750518798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.7642822265625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.2687759399414, \"water_flow\": 152.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.05824279785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.56494140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.49679565429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.74513244628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.7219696044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.7796630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.82835388183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.480224609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.26979064941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.38316345214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.3269500732422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.4757080078125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9894561767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.33323669433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.38986206054688, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.47711181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.09442138671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.96095275878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 175.3629150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.6849822998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.21080017089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.44906616210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6549072265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.54783630371094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.41238403320312, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.35142517089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.60079956054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6825408935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.78298950195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.73521423339844, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.13511657714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.4495849609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.48507690429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.1670379638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.7362060546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.82606506347656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2933349609375, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9302978515625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.12486267089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4408721923828, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.8845672607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.04119873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.71800231933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.75234985351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6504950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.76663208007812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.8161392211914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.02668762207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.46572875976562, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.71839904785156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.33409881591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.58384704589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.261962890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.17381286621094, \"water_flow\": 247.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.385433197021484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.66635131835938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.4444808959961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.88468170166016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.2744140625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.62821960449219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.35944366455078, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.87103271484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.51111602783203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.93632507324219, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6880340576172, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.14288330078125, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.24728393554688, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4492645263672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.67262268066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.2221221923828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.574951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.08499145507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.22213745117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6718292236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.22515106201172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.16883850097656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.08856201171875, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.26882934570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.96279907226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.99179077148438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.5486831665039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.7964096069336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.06132507324219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.19076538085938, \"water_flow\": 123.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.91542053222656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.8298568725586, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.36904907226562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7820816040039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.07514190673828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.11479187011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.31262969970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.1661148071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.74737548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.52629852294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.2979736328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.74842834472656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.03175354003906, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.36731719970703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.66490936279297, \"water_flow\": 305.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.89083099365234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.16667938232422, \"water_flow\": 1873.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.32048797607422, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.3790283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.97179412841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.70536041259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.84137725830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.9423828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.2999038696289, \"water_flow\": 386.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.76229858398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.22224426269531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.71719360351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.12828826904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.02149963378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.41828155517578, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.3380355834961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.22025299072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.35861206054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.80949401855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.04983520507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5574722290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.50115203857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.46479034423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5845718383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.43444061279297, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.67069244384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.1613540649414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.40641784667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.28814697265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.7684326171875, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.90675354003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.94869995117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.17698669433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.7012710571289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.06875610351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.13641357421875, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.93948364257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.79954528808594, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.30905151367188, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.4251937866211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.16735076904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.14623260498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.71443176269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.09024047851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.8995590209961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.08251190185547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.334922790527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.781097412109375, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.83571243286133, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.222049713134766, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3971.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5255.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2653.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.122554779052734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.508766174316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.81707000732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.58106994628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.76211166381836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050048828125, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 156.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 117.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 116.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 115.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 114.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.28343200683594, \"water_flow\": 112.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.32794952392578, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.68838882446289, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.43839263916016, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.22472381591797, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.33786010742188, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.56327819824219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.52571105957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.72886657714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.37956237792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.43614196777344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.55915832519531, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.80433654785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.03414916992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.98360443115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.86073303222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4845962524414, \"water_flow\": 159.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.9385986328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.80096435546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.38543701171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.14405822753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.76824951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.3565673828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.1031494140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.77772521972656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.94989013671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.04611206054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0235137939453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.60572814941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.06869506835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5931854248047, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7032470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9095458984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.76365661621094, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.80393981933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7629852294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.93992614746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.29347229003906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.1486053466797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.68357849121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.00302124023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.29200744628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.9436798095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.27676391601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.8688507080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4059600830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.58411407470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.997802734375, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6400604248047, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.709716796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.3942413330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.2698974609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.61888122558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.80015563964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.68653869628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.22882080078125, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.91929626464844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6666717529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.06008911132812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.74887084960938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.03805541992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9673614501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.16683959960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.4598617553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.99597930908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.74447631835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.67435455322266, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.4664306640625, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.361610412597656, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.865970611572266, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.17203903198242, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.96173858642578, \"water_flow\": 259.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.12667465209961, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.28108978271484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.41888427734375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.26719665527344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.54037475585938, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.09664154052734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.45025634765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.71371459960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.44935607910156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.48997497558594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.27247619628906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.3245849609375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.22569274902344, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.02798461914062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5106964111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.2336883544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.33485412597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.99362182617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5735321044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.73471069335938, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.56256866455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.87088012695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.97306823730469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.55854797363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.35132598876953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.78608703613281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.01319122314453, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9869384765625, \"water_flow\": 110.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.36458587646484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.25601196289062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.73099517822266, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.37855529785156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.23766326904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.92599487304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.98627471923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.29769897460938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.78068542480469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.88642883300781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.91361236572266, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.85540008544922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.44666290283203, \"water_flow\": 304.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.82572937011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.84391784667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.68285369873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.7370834350586, \"water_flow\": 1883.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.70377349853516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.51664733886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.73738098144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.5546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.81275177001953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.6368179321289, \"water_flow\": 390.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.25875854492188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.98167419433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.45552825927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.92313385009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.5089111328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.93428039550781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.6619873046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.12525177001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.09664154052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8578872680664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.15128326416016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.63461303710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.49405670166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.50472259521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.06529998779297, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.83329772949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.56818389892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.36492919921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.20861053466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.50355529785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.10231018066406, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.99540710449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.12181854248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.48005676269531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.7524642944336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.2475357055664, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.65227508544922, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.66944122314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.87920379638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.71228790283203, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.34379577636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.88922119140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.1173324584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.87435913085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.35944366455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.55506134033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.6135482788086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.01637268066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.3203239440918, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.12812423706055, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.514244079589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.18625259399414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06686782836914, \"water_flow\": 3965.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05000686645508, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05010223388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09796142578125, \"water_flow\": 5254.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2652.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0501823425293, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.933902740478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.26980972290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.25725555419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.760990142822266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.89839172363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.61983871459961, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.90619659423828, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.59185791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.64177703857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.59590148925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.52741241455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.98448181152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.30714416503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.16285705566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.62200164794922, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.40901184082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0819549560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.50286102294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.4820556640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.29557800292969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.17621612548828, \"water_flow\": 164.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.78176879882812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.7774429321289, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.13008117675781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.56633758544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.29458618164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.60337829589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.17718505859375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.39903259277344, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.51243591308594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5766143798828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.41836547851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.92417907714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.72479248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.33596801757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.40956115722656, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.80917358398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.73684692382812, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3604278564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.40928649902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0505828857422, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.15957641601562, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.1280975341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.32672119140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.14517211914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.73318481445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.24183654785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8695068359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.40673828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.65484619140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.91091918945312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.46908569335938, \"water_flow\": 85.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.65414428710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.64523315429688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.10475158691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.5948486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.826416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.8003692626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.3805694580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.16522216796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.61524963378906, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.39501953125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.5093231201172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.94822692871094, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.14646911621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2823028564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.7610321044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.49359130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.73973846435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.68756866455078, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.61518096923828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.51934051513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.00902557373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.1881217956543, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.1031379699707, \"water_flow\": 306.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.072731018066406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.64353942871094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.68486785888672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.83598709106445, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.09508514404297, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.15498352050781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.33975219726562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.51475524902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.66015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.16087341308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.00469970703125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.26329040527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.95587158203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.28805541992188, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.8471221923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.22740173339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.1414794921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.25999450683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.75404357910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.09767150878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.97230529785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.6714859008789, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7332763671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.49608612060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.17121887207031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.47225952148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.8405990600586, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.43060302734375, \"water_flow\": 102.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.76497650146484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.85468292236328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.02996063232422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.68496704101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.54979705810547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71952819824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.43192291259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.51507568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.21964263916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.20850372314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.02947998046875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.65739440917969, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.98552703857422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.75069427490234, \"water_flow\": 299.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.95922088623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.59385681152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2887191772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.74549865722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.12388610839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.71757507324219, \"water_flow\": 1891.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.5836410522461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.33898162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.68843078613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.6830825805664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.57337188720703, \"water_flow\": 399.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.57769012451172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.10188293457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.08888244628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.52230072021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.93695831298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.5045166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.42546844482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.2371826171875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.6413345336914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.463623046875, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0727767944336, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.12101745605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8231964111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.42046356201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5704116821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.01284790039062, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.78704833984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.71842956542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.48249053955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.59251403808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.10787963867188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.27407836914062, \"water_flow\": 91.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.53433227539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.02677917480469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.17098236083984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.10529327392578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.37792205810547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.25865173339844, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.9505386352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.06108856201172, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.77487182617188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.3064193725586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.47371673583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.13667297363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.13532257080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.758056640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.57384490966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.47361755371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.8967170715332, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.00496292114258, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.30060958862305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.40178680419922, \"water_flow\": 3908.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.207908630371094, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.059593200683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05190658569336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.24013900756836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.08401107788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050140380859375, \"water_flow\": 5253.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 102.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2651.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.051822662353516, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.080718994140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.176883697509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07175827026367, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.50958251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.9370002746582, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.11168670654297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.66108703613281, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.39213562011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.2918472290039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.88452911376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.0115966796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.67474365234375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.29267883300781, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.7391586303711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85921478271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.75328826904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.83956909179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.05421447753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.59630584716797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.13054656982422, \"water_flow\": 170.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.65953063964844, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.57262420654297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.1250228881836, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.2892837524414, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.21723175048828, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4925537109375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.70973205566406, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1358642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.59889221191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6792449951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.39443969726562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.90916442871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.02911376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.19992065429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.30828857421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.15367889404297, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.81153106689453, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.0799789428711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6873321533203, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.27618408203125, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.32696533203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.0354461669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.2052001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.65805053710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.94471740722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.23509216308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4186248779297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.700927734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.88900756835938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.91175842285156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.36119079589844, \"water_flow\": 91.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.76258850097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.42733764648438, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.02308654785156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7984161376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.4244842529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.78785705566406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.68199157714844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.0052032470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.39474487304688, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.15472412109375, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.5018768310547, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.85911560058594, \"water_flow\": 100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.82901000976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.91647338867188, \"water_flow\": 108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.98924255371094, \"water_flow\": 111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.86893463134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.02893829345703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.08959197998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.2315673828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.03263854980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.50531005859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.64222717285156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.49469757080078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.33404541015625, \"water_flow\": 319.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.95147705078125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.940032958984375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.703914642333984, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.145057678222656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.5916976928711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.17811584472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.75838470458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.015869140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.4413299560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7434539794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.78909301757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.16473388671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.60482788085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5389862060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.05918884277344, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.11048889160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.699951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.43441772460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.35926818847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.84400939941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.879150390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31813049316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.84130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.3649444580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.13041687011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.89573669433594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.89989471435547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.0340347290039, \"water_flow\": 94.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.61138916015625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.89208221435547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.03892517089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.87574768066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.68099212646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.71932983398438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2970733642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6118927001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.00666809082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.64401245117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95462036132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.6414566040039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.27204895019531, \"water_flow\": 295.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.9817886352539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.84455108642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.10592651367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.9427490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97926330566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.10775756835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.190673828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.27603149414062, \"water_flow\": 1897.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.97211456298828, \"water_flow\": 1901.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.6511001586914, \"water_flow\": 1905.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.75691986083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.34034729003906, \"water_flow\": 407.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.30571746826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.75090026855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.28667449951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.59793853759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.48246002197266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.83465576171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.88631439208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.71595001220703, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.65802001953125, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.91864013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.45986938476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.5011978149414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8953094482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.82945251464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.14386749267578, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.33705139160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.54900360107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.59545135498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.67035675048828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.21269226074219, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.46633911132812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.18036651611328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.79328155517578, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.36588287353516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.76358795166016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.94033813476562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.53767395019531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.81846618652344, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.85449981689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.31185913085938, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.13761901855469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.89891815185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.27153778076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.39586639404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.07950592041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.11626434326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.40007781982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.58519744873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.03350830078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.321693420410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.34436798095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.549137115478516, \"water_flow\": 3890.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.522159576416016, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.263511657714844, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.94675064086914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.59183883666992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.916160583496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08647537231445, \"water_flow\": 5240.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2650.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.17618179321289, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.43909454345703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.97630310058594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.2223892211914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.4398193359375, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.0215072631836, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.71649932861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.3874282836914, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.43601989746094, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.69029235839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.06258392333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.3725814819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.38346862792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.83150482177734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.75209045410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.84526824951172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.4378662109375, \"water_flow\": 217.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.48470306396484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36771392822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.11976623535156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.40819549560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.75684356689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.9417495727539, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.50450134277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9180145263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.91854858398438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2137451171875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.98391723632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.00059509277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.53427124023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.81080627441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.05197143554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.69319915771484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.1461410522461, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.76383972167969, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8125762939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.57078552246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.31790161132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.43856811523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.777587890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.9654541015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.92800903320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.98159790039062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.20372009277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.19532775878906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.10675048828125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.18929290771484, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.94711303710938, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.44937133789062, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.62649536132812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.89869689941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.60983276367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.90914916992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.3515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5172576904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.86920166015625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.54685974121094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4782257080078, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.76425170898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8541717529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.93106079101562, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.73284912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.9016571044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.81734466552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.01264953613281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.05564880371094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.65425872802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.39250946044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.33399963378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.40240478515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.281288146972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.137367248535156, \"water_flow\": 330.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.803558349609375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.87932205200195, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.206214904785156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.879085540771484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.95036315917969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.83627319335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.03030395507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.32778930664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.99569702148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.05084228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.2799072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.95700073242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.49659729003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.2329864501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.2667236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7345428466797, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.55889892578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.63116455078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.49159240722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1565399169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.92242431640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0050048828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6752166748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.9733657836914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.54579162597656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.17664337158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.99898529052734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.56951141357422, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.36863708496094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.67293548583984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.72065734863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.05958557128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5054473876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7576141357422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.2879409790039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.7754898071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.33003234863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.21138000488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.50318908691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.68233489990234, \"water_flow\": 278.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.25313568115234, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.30831909179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.01344299316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.72962951660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.17028045654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.74177551269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.81475830078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.91000366210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9620132446289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11917114257812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.5779800415039, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.00164031982422, \"water_flow\": 1914.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.33863067626953, \"water_flow\": 411.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.1012191772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54486083984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.23445892333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.85509490966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.95501708984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.58592987060547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.74417877197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.7748031616211, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.23435974121094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.05941009521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.94102478027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.97844696044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4364471435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.91242218017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.05020141601562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.06277465820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.92928314208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3993911743164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.5136947631836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.28827667236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.50106048583984, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.0629653930664, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.12315368652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.21578216552734, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.54884338378906, \"water_flow\": 144.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.78126525878906, \"water_flow\": 187.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.7069320678711, \"water_flow\": 207.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.27083587646484, \"water_flow\": 214.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.85487365722656, \"water_flow\": 284.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.85914611816406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.85877227783203, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.25822448730469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.026123046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.73728942871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.92911529541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.54248046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.3326416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.29368591308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.3156623840332, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.41097640991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.789398193359375, \"water_flow\": 3889.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.719573974609375, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.8470573425293, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.53133010864258, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.68305206298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.26023864746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.28886795043945, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05928421020508, \"water_flow\": 5209.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2649.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.00481033325195, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.02169036865234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.32707214355469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.58238220214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.7797622680664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.24064636230469, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.31934356689453, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.82662963867188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.51406860351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.03881072998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9520492553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.46837615966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.87051391601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.76544952392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.01265716552734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.8017349243164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.9621353149414, \"water_flow\": 224.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.64148712158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.94132995605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.76657104492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.97706604003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.62924194335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.02564239501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.54353332519531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.126708984375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.6591796875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.47186279296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.25445556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5772247314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.70838928222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.61617279052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.9378433227539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.06327819824219, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.73522186279297, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.56383514404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.90879821777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.0824737548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.00732421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.35658264160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.34548950195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.88934326171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.60719299316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.37806701660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.92478942871094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.68954467773438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.76329803466797, \"water_flow\": 144.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7388458251953, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.2549591064453, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.83169555664062, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.93922424316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.86180114746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.49444580078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.7178497314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.32958984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.83700561523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.20150756835938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.68492126464844, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7636260986328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.30606079101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.94149780273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.5025634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.24200439453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.45700073242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.99433898925781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.75645446777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.75294494628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.90245056152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.83712768554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.50456237792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.04035186767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.57510757446289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.65859603881836, \"water_flow\": 343.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.159446716308594, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.04454803466797, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.31230926513672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.60427474975586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.11743927001953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.79730224609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.18518829345703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.96537780761719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.18136596679688, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1853485107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9676055908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.15965270996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.23046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.73904418945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.20179748535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.26768493652344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.2163543701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.91220092773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.1934356689453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7184600830078, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.92398071289062, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.64004516601562, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.2222671508789, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.12754821777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.59491729736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.38443756103516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.93665313720703, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.30756378173828, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.68295288085938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68287658691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5153045654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4886932373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2207489013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.79315185546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.71212005615234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.56045532226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.0555648803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.68360900878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.08293914794922, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.326416015625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.3683853149414, \"water_flow\": 266.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.70494079589844, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.40660095214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.7458267211914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.51383972167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.42860412597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.53462219238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.53479766845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.6175765991211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.10554504394531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.02967834472656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.49468994140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.58831787109375, \"water_flow\": 2331.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.96253204345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.54352569580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7161636352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.826904296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8699951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.0078353881836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.33076477050781, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.45709228515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.52862548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0196304321289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.04142761230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.12997436523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.20501708984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.64269256591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.87680053710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.54182434082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.89186096191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.39462280273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.57312774658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.53357696533203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.84455871582031, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.50206756591797, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.12232208251953, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.12741088867188, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.45768737792969, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.91007232666016, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.95240783691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.9106674194336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.7674789428711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.27246856689453, \"water_flow\": 297.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.26569366455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.65143585205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.20130920410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.80941772460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.1832275390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.681396484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.81946563720703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.393280029296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.50387954711914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.24808120727539, \"water_flow\": 3886.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.02641677856445, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.09892654418945, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.81707763671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.34151840209961, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.19619369506836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.22446823120117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.5956916809082, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05351257324219, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5198.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 99.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2648.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07075119018555, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.124088287353516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.17156982421875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.06299591064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.09220123291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.06755828857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.7311019897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.89704895019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.1379165649414, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.0871353149414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.50884246826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.77945709228516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.40858459472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.91465759277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.47557067871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.7461929321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.14759063720703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.32823944091797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.85102844238281, \"water_flow\": 232.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.13408660888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.40858459472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.55299377441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.74264526367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.59002685546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.73313903808594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.50390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.21338653564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.30546569824219, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.56128692626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.44526672363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.08216094970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.85861206054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.44148254394531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.34552764892578, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.1121597290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.06803131103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.53337097167969, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.05540466308594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.43775939941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.08377075195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.8850860595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2300262451172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6145477294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.71151733398438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.520751953125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.41488647460938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47553253173828, \"water_flow\": 156.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.45089721679688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.47865295410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.27203369140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.30958557128906, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.69386291503906, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.2725067138672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.79226684570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.11026000976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.50704956054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.56190490722656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.9188232421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.99673461914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9788360595703, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.05601501464844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.79579162597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.6055145263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.17295837402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.84417724609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.78472137451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.08244323730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.61568450927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.0263900756836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.9462661743164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.39043426513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.32947540283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.093284606933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.84217071533203, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.22649383544922, \"water_flow\": 407.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.22642135620117, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.64024353027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.61112976074219, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.246219635009766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.063777923583984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.39510345458984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.74938201904297, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.6577606201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.51979064941406, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0440673828125, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.96823120117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.50807189941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.21719360351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.60623168945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.07164001464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.47393798828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.60731506347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.62840270996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.95509338378906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.54039001464844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.07614135742188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.56349182128906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.83721160888672, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.508544921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.44699096679688, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.66608428955078, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.69161224365234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.91809844970703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.69644165039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.45465087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.98800659179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.85955810546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.01939392089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.66148376464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.46290588378906, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.48918914794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.72294616699219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8503189086914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.0073013305664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.24626159667969, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.17160034179688, \"water_flow\": 232.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.69281768798828, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.32275390625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.7447509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.62068939208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.28375244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9907455444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.3935775756836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.9612808227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.10032653808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.62451934814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.24954223632812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.6014175415039, \"water_flow\": 2348.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.89049530029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.10307312011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.7782211303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.82515716552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.51799774169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.581298828125, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.53681182861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.38408660888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.07594299316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.00957489013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.62094116210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.72811889648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.61615753173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.61724090576172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.17337036132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.37721252441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.12722778320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.84703826904297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.86673736572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.26487731933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.035400390625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.62042999267578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.36109924316406, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.01276397705078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.22534942626953, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.7718505859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.68819427490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.9535903930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.51373291015625, \"water_flow\": 305.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.42503356933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.93944549560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.58687591552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.65141296386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.83191680908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.31019592285156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.717952728271484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.83859634399414, \"water_flow\": 3876.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.119873046875, \"water_flow\": 3881.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.66327667236328, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.704097747802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.41934585571289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.6397819519043, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.0672492980957, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.220924377441406, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.22334671020508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.876583099365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.87446212768555, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0711555480957, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09137725830078, \"water_flow\": 5197.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050025939941406, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2647.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.057220458984375, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.77290344238281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.41324996948242, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.474727630615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.91864776611328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.14405822753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.87647247314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.16617584228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.49519348144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.28909301757812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.4297866821289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35145568847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.661376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4415283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.58126831054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.89624786376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.52790069580078, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.01163482666016, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.28778076171875, \"water_flow\": 240.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.73485565185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.08812713623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.74703979492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.35083770751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.00924682617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.3709945678711, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.3436508178711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.0814208984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.17057037353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.01106262207031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.48028564453125, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.45262145996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.44622039794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.51203155517578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.74674224853516, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.93444061279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.30802917480469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.44453430175781, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.68926239013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.06121826171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5572967529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.83131408691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.66038513183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.89404296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.16265869140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.781494140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.619140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.67240142822266, \"water_flow\": 174.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.99433898925781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.91615295410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.22694396972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5880584716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.76991271972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.3568115234375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.81947326660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.20237731933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.72634887695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.3706817626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.9781036376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.62265014648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.8463134765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.30003356933594, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.7276153564453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.83932495117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.29312133789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.10745239257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7822265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.48358917236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.33490753173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.86466217041016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.41576385498047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.98338317871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.31736755371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.91327667236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.55339813232422, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.49578094482422, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.60163879394531, \"water_flow\": 454.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.201316833496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.4167366027832, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.79423904418945, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.35236740112305, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.44568634033203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.07452392578125, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.99683380126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.88076782226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.55899047851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.57081604003906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.81057739257812, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6208953857422, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.93838500976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6941680908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.01290893554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.7556610107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.09620666503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.97439575195312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.8612060546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.08425903320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1124725341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.15887451171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.47245025634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.36095428466797, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.4329833984375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.43280792236328, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.52783203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2855682373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7999267578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.70794677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.0812225341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.33294677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.41778564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.8260498046875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.38631439208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.11064147949219, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.50736236572266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.21157836914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.74211883544922, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.99919891357422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.19020080566406, \"water_flow\": 224.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4308090209961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.32069396972656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.55708312988281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.53374481201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.30693054199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.36483764648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.6505355834961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.4175033569336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.64452362060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.29251098632812, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.89197540283203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.73309326171875, \"water_flow\": 164.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.4145278930664, \"water_flow\": 2517.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.29136657714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0058364868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.4677963256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.34940338134766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.16458892822266, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.68709564208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.23797607421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.92498779296875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.93489837646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.58074188232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.34508514404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.18878936767578, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.2105712890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7147674560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.72158813476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.34845733642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.09258270263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.68256378173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.83717346191406, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.59033203125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.5506362915039, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.35868835449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.69660949707031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.91570281982422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.33705139160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.08320617675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.9488296508789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.7906723022461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.89954376220703, \"water_flow\": 309.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.7577133178711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.40342712402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.25369262695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.89128112792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.58753967285156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.2286376953125, \"water_flow\": 3869.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.48794174194336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.823829650878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.02684020996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.697044372558594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.19274139404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.93915939331055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.30887985229492, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.88434982299805, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.122802734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.42106246948242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.28164291381836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.19377136230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.696956634521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05424499511719, \"water_flow\": 5196.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2646.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.18653106689453, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.14011001586914, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.98279571533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.39847564697266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.63973999023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.18948364257812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.13892364501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.11253356933594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.04381561279297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.45626831054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.18362426757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.4721221923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.85711669921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.79501342773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.32096099853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.71180725097656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.8921127319336, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.24734497070312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.03567504882812, \"water_flow\": 267.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.39591217041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.04332733154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.64981842041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2957763671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.12832641601562, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.74726867675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.10736846923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.82311248779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.47310638427734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.73161315917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.32311248779297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.42191314697266, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.13246154785156, \"water_flow\": 366.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.3027114868164, \"water_flow\": 353.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.50077056884766, \"water_flow\": 274.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.26880645751953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.63184356689453, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.23094940185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.50330352783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.94839477539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.94798278808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.58192443847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2118682861328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.75042724609375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.863525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6560821533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.01651000976562, \"water_flow\": 186.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.37572479248047, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2158203125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.55406188964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9659881591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.96343994140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.59303283691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0348663330078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.91525268554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.81369018554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.11520385742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.5428009033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.0662078857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.8375244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.2568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.71888732910156, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5279998779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1300506591797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.51473999023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.75038146972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.33721923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.79573822021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.90766143798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.94464111328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.57731628417969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.88510131835938, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.2614517211914, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.98060989379883, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.81151580810547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.749942779541016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.930458068847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.548797607421875, \"water_flow\": 466.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.62004470825195, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.09159851074219, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.4680061340332, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.892784118652344, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.3121337890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.3923110961914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7473602294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7992401123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.12974548339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6379852294922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6861572265625, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.86822509765625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8682403564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.83935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.79429626464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.41148376464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.5297393798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.7161865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.42050170898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7320098876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.87123107910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.12486267089844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.80353546142578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.47824096679688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.44561004638672, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.19761657714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.20729064941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.51507568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.1356658935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.19773864746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.42510986328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8520050048828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.98272705078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.72308349609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.23452758789062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.07707214355469, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.55408477783203, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.48468780517578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.44290924072266, \"water_flow\": 220.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.36653900146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.11549377441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.89063262939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.71218872070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.05423736572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.19419860839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.85221862792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.6852798461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.69837188720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.9233169555664, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.36074829101562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.04154968261719, \"water_flow\": 163.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.24874114990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.7197036743164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.82170867919922, \"water_flow\": 2520.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.4356460571289, \"water_flow\": 2525.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.67768859863281, \"water_flow\": 2529.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.25135803222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.32877349853516, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.41618347167969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.59959411621094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.66151428222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.37193298339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.1380615234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.01529693603516, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.05362701416016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.76139831542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.50680541992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.49315643310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.7590103149414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.99604034423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.70231628417969, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.31332397460938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.23693084716797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.0149917602539, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.94155883789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.6074447631836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.36357879638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.321533203125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.969970703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.94623565673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.09833526611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.02391052246094, \"water_flow\": 314.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.32894134521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.24288940429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.29680633544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.882476806640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.81320571899414, \"water_flow\": 3859.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.6448860168457, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.99027252197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.52454376220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.57862091064453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.32023620605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.20445251464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.88547134399414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.5548210144043, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.632102966308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.43235778808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.079071044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.7680778503418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.432796478271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.32137680053711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050052642822266, \"water_flow\": 5181.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2645.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.35026931762695, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.21052551269531, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.18590545654297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.6821517944336, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.33248138427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.96675872802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.71624755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.87273406982422, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.46157836914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.55616760253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.2445068359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.21646118164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2989959716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.60890197753906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.8782958984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36900329589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.36759185791016, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.57730102539062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.0857162475586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.233642578125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.97867584228516, \"water_flow\": 271.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.41436004638672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.47241973876953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.22758483886719, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.3613510131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.01882934570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8570556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.13553619384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.30440521240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8924789428711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.21171569824219, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.38871765136719, \"water_flow\": 367.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.26483917236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.74749755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1939926147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.99241638183594, \"water_flow\": 268.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.62406158447266, \"water_flow\": 247.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.10883331298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.44961547851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.74504852294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.81767272949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.1842041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.82969665527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.26421356201172, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.0236587524414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.76972961425781, \"water_flow\": 190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.2892303466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6505889892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.62274169921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.95223999023438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.42701721191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.46945190429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.75247192382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.26333618164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.01829528808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.3860321044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.40248107910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.30914306640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.79296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.59303283691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.29441833496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.6949920654297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.69091796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.40614318847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.71954345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.46498107910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.6318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.03795623779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.07257080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.36286163330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.07247161865234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.07381439208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.92060852050781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.63426971435547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.64789581298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.78168487548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.20512771606445, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.355003356933594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.16081237792969, \"water_flow\": 479.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.85524368286133, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.60050964355469, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.32039260864258, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.91150665283203, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.72113800048828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.27266693115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.533203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6156768798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.0703887939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9898681640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0404510498047, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.79446411132812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.7374725341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.48959350585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7455291748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.31517028808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.1553955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.79833984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.72215270996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.37242126464844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.85476684570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.49394226074219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.05563354492188, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.32352447509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.6478500366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.5818634033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.46505737304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9852294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.81036376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.1967315673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.60594177246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.17544555664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.13783264160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.57548522949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.96126556396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.69129180908203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.10546112060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.98628234863281, \"water_flow\": 216.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.21977996826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.38787078857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.60842895507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.58499145507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.01966857910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.81942749023438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.5388412475586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.96602630615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.60067749023438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.90020751953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.46604919433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.39446258544922, \"water_flow\": 159.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.96207427978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.76887512207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.44412231445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.42764282226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.71792602539062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.53742980957031, \"water_flow\": 2536.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.02942657470703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.91123962402344, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.4349136352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.99913787841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.35819244384766, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.40801239013672, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.90496826171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.70870971679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.0816421508789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.43746948242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.94857025146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9527816772461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.19686126708984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.2403793334961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.03926849365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.3640365600586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.87529754638672, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.70439147949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.37486267089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.6998291015625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.52735137939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.7030258178711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.99054718017578, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.93241119384766, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.00659942626953, \"water_flow\": 329.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.530120849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.69831848144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.47885513305664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.642513275146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.91621780395508, \"water_flow\": 3850.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.31546401977539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.26370239257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.77104187011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.52870178222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.54265594482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.2385482788086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.1722412109375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.74335861206055, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.66941452026367, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.79450988769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.39607238769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.2958984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.783939361572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.1524543762207, \"water_flow\": 5154.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 95.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2644.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05006790161133, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.95206832885742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.628173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.45048522949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.81938171386719, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.21791076660156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.06578063964844, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.19456481933594, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.0756607055664, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.1393051147461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.19229125976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.42915344238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.88589477539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.936279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.85922241210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.55455017089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.00409698486328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.801513671875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.55361938476562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.8908462524414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.78964233398438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.2440185546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8011474609375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.07054901123047, \"water_flow\": 278.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.08479309082031, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.94053649902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.86599731445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.46561431884766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.05442810058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.3791275024414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.90962219238281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.42967987060547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.27591705322266, \"water_flow\": 392.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.72342681884766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.77629089355469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.74298095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.372802734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.5444564819336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.66143035888672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.24894714355469, \"water_flow\": 241.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.884765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.27499389648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.87080383300781, \"water_flow\": 225.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.91841125488281, \"water_flow\": 219.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.86648559570312, \"water_flow\": 213.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.1312255859375, \"water_flow\": 199.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.90234375, \"water_flow\": 194.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.8012237548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.40745544433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.29931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.72618103027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.3717041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.48023986816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.36830139160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.29232788085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.91213989257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.4008026123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.28204345703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.23109436035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.56446838378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.65451049804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.83523559570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1501007080078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.76593017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.57992553710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.42514038085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.98138427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.95303344726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.08790588378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.86542510986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.70317077636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.18209075927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.31305694580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.01457214355469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.73615264892578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.50943756103516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.405277252197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.86480712890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.03045654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.92171096801758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.07680130004883, \"water_flow\": 491.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.60462951660156, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.45912170410156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.80419158935547, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.9664077758789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.03948211669922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.38389587402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6776885986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.15184020996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.3778076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.17880249023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.25071716308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.85214233398438, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.7633514404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.23699951171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.4981231689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.74900817871094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.73948669433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.5590057373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.4878387451172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.2066192626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.80458068847656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.65220642089844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.99610137939453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.64384460449219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.3027114868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.97181701660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.8058319091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.64190673828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.40309143066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.10977172851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.91014099121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.71209716796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2117462158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.24215698242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.24332427978516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.54895782470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.99383544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.3276138305664, \"water_flow\": 213.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.69123077392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.68038940429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.06632995605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.88485717773438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.91319274902344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.07572174072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.77017211914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.39788818359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.07611846923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.50069427490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.76595306396484, \"water_flow\": 136.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.94921112060547, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.27894592285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.01274871826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.58381652832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.52207946777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.03583526611328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.81295776367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.34608459472656, \"water_flow\": 2543.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.54811096191406, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.725341796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.0053482055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.17630767822266, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.41673278808594, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.50106811523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.74071502685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.94261932373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.51139068603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.34398651123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.15180969238281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.27240753173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.6095199584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.02093505859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.0799560546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.45118713378906, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.189208984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.12207794189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.18990325927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.74222564697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.39598083496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.74992370605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.50296783447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.93212890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.60734558105469, \"water_flow\": 335.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.15640640258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.80827331542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.410438537597656, \"water_flow\": 3845.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.73394012451172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.23548889160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.40184020996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.77700805664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.63182067871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.6700439453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.24299621582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.369140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.88133239746094, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.16276168823242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.59461975097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.051387786865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.80828857421875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.26320266723633, \"water_flow\": 5124.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.058650970458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.24580001831055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.66941833496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.66415023803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05009841918945, \"water_flow\": 94.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2643.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05101776123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.64931869506836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.15825653076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.15473175048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.43898010253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.22616577148438, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.81755828857422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.35321044921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.61713409423828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.16581726074219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.6876220703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.50360870361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.08186340332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.63079833984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.65701293945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.15127563476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.03656005859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.66751098632812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.52667236328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.57201385498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.80156707763672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.39202117919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.3812255859375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.60151672363281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.98834228515625, \"water_flow\": 305.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.88589477539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.45165252685547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.76377868652344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.10572814941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.81135559082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.19132232666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.15483856201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.12020874023438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.52002716064453, \"water_flow\": 415.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.72332763671875, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.66487121582031, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.18373107910156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.71310424804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.2889633178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.24028015136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.72698211669922, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.90432739257812, \"water_flow\": 236.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.2365493774414, \"water_flow\": 232.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.197021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.23995208740234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35868072509766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.40560913085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.33885192871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.41795349121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.59457397460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.94464111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.57461547851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.66822814941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.29193115234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.58303833007812, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9808349609375, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1142578125, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5658721923828, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.33546447753906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.77159118652344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6897430419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.7918701171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.47604370117188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6649932861328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.86407470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.85946655273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.3971405029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.76629638671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.80081176757812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.20790100097656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0794219970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.0584716796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.34449768066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.18600463867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.6057357788086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.84745788574219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.87066650390625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.38058853149414, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.061729431152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.194095611572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.176536560058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.78996276855469, \"water_flow\": 545.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.16035079956055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.49346160888672, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.042110443115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.94893646240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.75995635986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.06867980957031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.96009826660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.38717651367188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.89907836914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6786651611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.47520446777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.47561645507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.20545959472656, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.3567657470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.07591247558594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.53480529785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.32008361816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.66009521484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.05783081054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.78346252441406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.50323486328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.792236328125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0292510986328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.87135314941406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35841369628906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7027130126953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.84255981445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.73960876464844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.21920776367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.57618713378906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0193328857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.41368103027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8204803466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.84231567382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.69544982910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.32231140136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.09199523925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.08667755126953, \"water_flow\": 209.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.06063842773438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.84396362304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71175384521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.00820922851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.0473403930664, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.96015167236328, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.81329345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.61064147949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2149658203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.02713775634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.9171371459961, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.2131118774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.98149871826172, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.98854064941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.89546203613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.4244613647461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.05089569091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.78221893310547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.69317626953125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.18600463867188, \"water_flow\": 2626.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.72425842285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.81497955322266, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.13490295410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.79896545410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.41581726074219, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.0578842163086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.36824798583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.93375396728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.66715240478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.12696075439453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.18997192382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.17638397216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.896728515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.48332214355469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.80964660644531, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.1415023803711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.3417739868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.22541809082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.16427612304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.1441650390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.98204803466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.80499267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.4423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.72008514404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.94669723510742, \"water_flow\": 336.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.37581253051758, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.43935775756836, \"water_flow\": 3837.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.5674934387207, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.10124969482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.47145080566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.37622833251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.68065643310547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.22666931152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.1244125366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.188270568847656, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.66149139404297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.2818603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.0012321472168, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.36207580566406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.93513870239258, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.11911392211914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.060733795166016, \"water_flow\": 5113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.441680908203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.75607681274414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.50385665893555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.48605728149414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.231224060058594, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05724334716797, \"water_flow\": 2642.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.96354675292969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.11251831054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.88945770263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.10421752929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.44589233398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.31432342529297, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.91568756103516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.41768646240234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.94805908203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.8068618774414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.663818359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.26911163330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.19808959960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.84455108642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.97950744628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.6566162109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.48948669433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.35313415527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.08061218261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.64717102050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.59673309326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.52532196044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.35979461669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.21766662597656, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.25933074951172, \"water_flow\": 310.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.69861602783203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.76921844482422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2695541381836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.83534240722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.5814437866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.47220611572266, \"water_flow\": 437.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.81785583496094, \"water_flow\": 428.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.31266021728516, \"water_flow\": 421.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.75984191894531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.20121002197266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.6788558959961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.86949920654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.62787628173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9654312133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.6982192993164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.60737609863281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.20269012451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.82618713378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8851318359375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3008804321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1928253173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5323028564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3011932373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.38507080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.8553466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.8489990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.19625854492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.94915771484375, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.19883728027344, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.66038513183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.46450805664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.49533081054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.6882781982422, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.37411499023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.20713806152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.65281677246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.2024688720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.51353454589844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.06195068359375, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4167938232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.34332275390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.03076171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3657684326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1044158935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1258087158203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.50659942626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.88544464111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.14112854003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.24307250976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.9687728881836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.56878662109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.27738952636719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.55487823486328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.802616119384766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.13974380493164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.297996520996094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.99586868286133, \"water_flow\": 553.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.361473083496094, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.95352554321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.846092224121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.1072006225586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.27629089355469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.56957244873047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.41332244873047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.22599029541016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2716522216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.08676147460938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.9878387451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.4944610595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8531036376953, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.81137084960938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.47378540039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.8387908935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.93429565429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.96728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.1659698486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.2616729736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.89788818359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.24575805664062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9668731689453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.17220306396484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.0775146484375, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.07717895507812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.23892211914062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2457733154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.32781982421875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.38482666015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.49696350097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.96469116210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8133544921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.06008911132812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.63420867919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.36502075195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.29759216308594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.42479705810547, \"water_flow\": 199.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.24736022949219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.04898834228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.02763366699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.31102752685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.15335845947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.27323913574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.97705841064453, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.63594818115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.34434509277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.64651489257812, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.78844451904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.57536315917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16924285888672, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.76941680908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.09920501708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.82367706298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.81405639648438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.9970474243164, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.4740982055664, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.32808685302734, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.59906768798828, \"water_flow\": 2669.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.54298400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.02522277832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.13668060302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.04417419433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.55835723876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.68962097167969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.67876434326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.52787017822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.54229736328125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.03558349609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.06803131103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8476791381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.97417449951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.7779769897461, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.58218383789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.89559936523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.60527801513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.16351318359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.70921325683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.04073333740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.218017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.9726333618164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.19863510131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.825584411621094, \"water_flow\": 3459.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.684288024902344, \"water_flow\": 3829.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.256168365478516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.14976501464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.72398376464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.20869445800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.89251708984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.99993896484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.06131744384766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.14022827148438, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.257789611816406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.17463302612305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.69856262207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.78993606567383, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.92333221435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.46624755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.841583251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.15897750854492, \"water_flow\": 5099.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.15525817871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.541141510009766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.39942169189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.53784942626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.80775833129883, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.054718017578125, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.11656951904297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.333770751953125, \"water_flow\": 2641.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.49756622314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.15564727783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.27043914794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.27872467041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.63262176513672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.65252685546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.9510498046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.7625503540039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.95183563232422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.09476470947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.91796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.82682037353516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.31053161621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.12545776367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.07553100585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.49685668945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.51612854003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.05966186523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.91708374023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.49551391601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.61882781982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.82945251464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.9242172241211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.65821838378906, \"water_flow\": 779.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.59242248535156, \"water_flow\": 457.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.72650146484375, \"water_flow\": 452.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.56737518310547, \"water_flow\": 449.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.78152465820312, \"water_flow\": 447.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.2654037475586, \"water_flow\": 445.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.82344055175781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.30694580078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.95012664794922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.57815551757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.8218765258789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.99581909179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.25250244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.48250579833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.999267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.75811767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5118179321289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8625259399414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.91194915771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.73484802246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.535400390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.92129516601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.53482055664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.82530212402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.01930236816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.97320556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.48202514648438, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4486541748047, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.10684204101562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.54226684570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.16835021972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.91053771972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.41360473632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.94454956054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.22781372070312, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.6581268310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.74798583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.11697387695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.05078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.99395751953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.093017578125, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0854949951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.0110321044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.49017333984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.91075134277344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.70626831054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.0449447631836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.28366088867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.02545166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.6277847290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.77325439453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.2165298461914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.72628021240234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.40628433227539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.459503173828125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.85437774658203, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.902809143066406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.105770111083984, \"water_flow\": 572.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.06911087036133, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.601844787597656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.80803680419922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.55834197998047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.13683319091797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.93075561523438, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.35792541503906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.45061492919922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.77607727050781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.22291564941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2669677734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.16555786132812, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.4845428466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.0667724609375, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.22198486328125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.56752014160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.91677856445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.88632202148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.0342559814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.6276092529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.77513122558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.27223205566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.510986328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0675506591797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.9574203491211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.87687683105469, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.1377944946289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.31863403320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.21414947509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.17005920410156, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.79828643798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.76866149902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.29296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.04912567138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9682846069336, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.75264739990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.70555877685547, \"water_flow\": 141.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.40371704101562, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.36978912353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.803466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.12721252441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.43981170654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.58160400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.11267852783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.64433288574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.30469512939453, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.76614379882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.14632415771484, \"water_flow\": 124.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.13890838623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.63494873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.41867065429688, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.76504516601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.62216186523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8162841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.8604965209961, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.72688293457031, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.50066375732422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.77055358886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.0427474975586, \"water_flow\": 2679.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.43821716308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.9612808227539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.85731506347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.24437713623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5818099975586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.49808502197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.0988540649414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.6555404663086, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.8727798461914, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.77613067626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.95610046386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.73468780517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.60437774658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.71036529541016, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.31160736083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.64046478271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.6813735961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.53876495361328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.15460205078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.68235778808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.58597564697266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.5364990234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.35381317138672, \"water_flow\": 3456.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.44504928588867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.93444061279297, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.48533630371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.58185577392578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.49317932128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7320556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.76559448242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.88519287109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.88103485107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.88871765136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.49147033691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.72233200073242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.176795959472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.40708923339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.85838317871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.71852493286133, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.30133819580078, \"water_flow\": 5078.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05009460449219, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.177764892578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.494144439697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.6628646850586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.16866302490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.18727493286133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05173110961914, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05567932128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.4808349609375, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.54218673706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.099239349365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.9216079711914, \"water_flow\": 2640.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.37340545654297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.38533020019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.58029174804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.31543731689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.91069793701172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.66024780273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.70940399169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.91388702392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.98914337158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.16867065429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.63198852539062, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.65898132324219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.5252685546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1398162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.4203643798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2001953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.93502044677734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.52887725830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.85234832763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.26039123535156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.45545959472656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.72988891601562, \"water_flow\": 793.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.1711654663086, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.59797668457031, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.97950744628906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.2569808959961, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.61065673828125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.79655456542969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.67597198486328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.50064086914062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.10169982910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5072250366211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.42295837402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.20307159423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.53166961669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.79256439208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.90909576416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.94841003417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.84027099609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.27305603027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.80947875976562, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.32728576660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.61293029785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.14686584472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.49557495117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4131317138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.48251342773438, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.20130920410156, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.61778259277344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.59608459472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7022705078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.51219177246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.82972717285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.58554077148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.46432495117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.83712768554688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.36106872558594, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.3267059326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.4052276611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.87998962402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.8350067138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.8966522216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8026580810547, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4551239013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.3539581298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.94520568847656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4960174560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.89915466308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.19719696044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.30990600585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.95390319824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.3583755493164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.29178619384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.7588119506836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.28712463378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.330684661865234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.7007942199707, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.33472442626953, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.888572692871094, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.03040313720703, \"water_flow\": 583.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.4022102355957, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.58123779296875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.995811462402344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.03112030029297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.29120635986328, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.45287322998047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.62213897705078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.07655334472656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.73701477050781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.26251983642578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.49518585205078, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.06451416015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.40196228027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.51385498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.8603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.53298950195312, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.41876220703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.43246459960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.98768615722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.82583618164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.99267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4654083251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.47422790527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.76666259765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1683807373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.29285430908203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.13998413085938, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.438720703125, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.22981262207031, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.52587890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.93990325927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.04057312011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.32875061035156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.62553405761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.47062683105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.343505859375, \"water_flow\": 140.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0645523071289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8737564086914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.01160430908203, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.23177337646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.93335723876953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.37352752685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.58261108398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.483642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.18692016601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.98863220214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.29695129394531, \"water_flow\": 120.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.58255004882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.90538024902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.88591766357422, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.26348876953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.12903594970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.76421356201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.84146881103516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.37213897705078, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.63667297363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.15735626220703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.70494842529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.26638793945312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.41674041748047, \"water_flow\": 2689.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.37229919433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.10920715332031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.43587493896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.53425598144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.0706558227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.15802764892578, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.74041748046875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.62948608398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.1513900756836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.94538116455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.14849853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.38706970214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.1211166381836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.98714447021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.0343017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.91809844970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.02377319335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.95350646972656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.70634460449219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.91288375854492, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.101627349853516, \"water_flow\": 3449.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.502357482910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.256431579589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.567237854003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.689640045166016, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.95378875732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.84099578857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.33467864990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.54112243652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.04200744628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.28456115722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.73223876953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.62753295898438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.95985412597656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.430816650390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.34800338745117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.05900573730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.2127571105957, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050010681152344, \"water_flow\": 5062.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.41167068481445, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.850303649902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.91246795654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.54038619995117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.73576354980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.405555725097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.787906646728516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.14688491821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.75431442260742, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.44466018676758, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.81129455566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.36980438232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.3356704711914, \"water_flow\": 2634.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.1324691772461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.67532348632812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.41779327392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.15680694580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.73844909667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.78277587890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.11915588378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9324722290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9390869140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.11827087402344, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.57836151123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.59634399414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1157989501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.54832458496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.726806640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.78034973144531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.75178527832031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.47119140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.67829132080078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.42234802246094, \"water_flow\": 816.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.5516586303711, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.8671646118164, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.43982696533203, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.80813598632812, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.06610107421875, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.86587524414062, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.57791137695312, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.39028930664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.62799072265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.68177032470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.78915405273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.93328094482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.78058624267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.65782928466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.20128631591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.01602172851562, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.39334869384766, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.97815704345703, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.65402221679688, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.20179748535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.99224853515625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2928009033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.02914428710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.40478515625, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.87860107421875, \"water_flow\": 93.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.2642822265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.32827758789062, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.34410095214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.3526611328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.38375854492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.2725067138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.56192016601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.38877868652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.20213317871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.0817413330078, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.65846252441406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6726531982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.67962646484375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.50584411621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.95175170898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.93646240234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.98802185058594, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.38633728027344, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.81509399414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9935302734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.4554443359375, \"water_flow\": 191.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8123321533203, \"water_flow\": 209.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.82272338867188, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.32830047607422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.572998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.82650756835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.35527801513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.65057373046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.04486846923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.494659423828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.3836555480957, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.68866729736328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.19017028808594, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.22125244140625, \"water_flow\": 593.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.72340774536133, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.198158264160156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.050418853759766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.803565979003906, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.51884841918945, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.306270599365234, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.93438720703125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.81937408447266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.96720886230469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.43267059326172, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.86768341064453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.092041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5681915283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.0793914794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.80999755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.00733947753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.73622131347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.88128662109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.38424682617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.20106506347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.95384216308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.29856872558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.1917266845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.0203857421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.87112426757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.89591217041016, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.66191864013672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.67902374267578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.09300994873047, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.89265441894531, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.50171661376953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6136245727539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.8626937866211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.78285217285156, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.46198272705078, \"water_flow\": 132.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.69515991210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.2726058959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.31844329833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.46578979492188, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.82526397705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.16800689697266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.52983093261719, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.57991790771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.38548278808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.03401184082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.45263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.17512512207031, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.51760864257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.69068145751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.46937561035156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.99504852294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.61455535888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.56511688232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.19482421875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.17344665527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.92953491210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.65638732910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.22282409667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.26862335205078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.00653076171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.11996459960938, \"water_flow\": 2700.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.41150665283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.62017822265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.66207122802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.30616760253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.15875244140625, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.09740447998047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.75979614257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.31331634521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.43126678466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.30970001220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.14553833007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.33830261230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.13765716552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.06343078613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.09381103515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.09832763671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.5635757446289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.41001510620117, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.60014343261719, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.262062072753906, \"water_flow\": 3426.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.391395568847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.56288528442383, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.764488220214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.62989044189453, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.88442611694336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.30409240722656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.0276870727539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.41971588134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.04269409179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.08930206298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.8457260131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.69523620605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.06984329223633, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.87888717651367, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.48402786254883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.75615310668945, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07389831542969, \"water_flow\": 5031.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05070495605469, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.40476608276367, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.07539749145508, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.2434196472168, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.135074615478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.505619049072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.47296142578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.91549682617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.45967102050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.851985931396484, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.90846252441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.04035186767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.81965637207031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.53667449951172, \"water_flow\": 2631.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.96139526367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.06886291503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.05497741699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.738525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.37451934814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.2744903564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.39710998535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.057861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.7386703491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.82012176513672, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.03121185302734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.10409545898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.82786560058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.46426391601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.09312438964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.02586364746094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.98388671875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.02476501464844, \"water_flow\": 833.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.38640594482422, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.62034606933594, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.80291748046875, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.09327697753906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.36504364013672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.86668395996094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.28080749511719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.86680603027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.44544982910156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.5702133178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.48383331298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.63605499267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.57012939453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.16505432128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.66451263427734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.07637023925781, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.05384063720703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.66634368896484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.6352310180664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.24679565429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.37403869628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.19294738769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.17356872558594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.37303161621094, \"water_flow\": 99.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.46823120117188, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.90463256835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.53184509277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.33840942382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7371826171875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.7976531982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.25013732910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.35366821289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.8878173828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.93556213378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.4257049560547, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.48788452148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.83059692382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.1533966064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.16757202148438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.71311950683594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.43719482421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.07928466796875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3261260986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.65675354003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.61888122558594, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.083740234375, \"water_flow\": 184.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.32427978515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.2431640625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.96234130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.34640502929688, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.22552490234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.21147155761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.90373229980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.73824310302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.9443588256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.11404037475586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.117618560791016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.31199264526367, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.968406677246094, \"water_flow\": 857.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.9704475402832, \"water_flow\": 247.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.95450210571289, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.79264831542969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.88085174560547, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.82780456542969, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.524349212646484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.27641677856445, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.87682342529297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.3418197631836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.88937377929688, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.94715118408203, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.88818359375, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.59996032714844, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.38851928710938, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.43089294433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.27906799316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.12911987304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.54559326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.72171020507812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.42715454101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.92153930664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.00465393066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6799774169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.885498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.17759704589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.05807495117188, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.66319274902344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.74171447753906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.029541015625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.75078582763672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.14276885986328, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.31292724609375, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.30497741699219, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.45710754394531, \"water_flow\": 115.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.43976593017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.3797378540039, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.23258209228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.29161071777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.79608154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.20137786865234, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.90286254882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.86476135253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.19073486328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.05335998535156, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.67363739013672, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.04114532470703, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.28433227539062, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.49059295654297, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2981948852539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.04008483886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.95390319824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4046401977539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.16908264160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.83021545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.22310638427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.13738250732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.65757751464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.09683227539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.5597915649414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.892822265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.51180267333984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.48722076416016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.41229248046875, \"water_flow\": 2704.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.7564926147461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.99080657958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.98101043701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.41971588134766, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.12500762939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.83845520019531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.1275405883789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.23223114013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.83966064453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.06806945800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6136245727539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.47110748291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.43264770507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.7593994140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.7729721069336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.89045715332031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.91230010986328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.75120544433594, \"water_flow\": 3422.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.837730407714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.96107482910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.25797653198242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.00766372680664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.93997573852539, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.86944580078125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.76543426513672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.76677703857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.36567687988281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.25572967529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.21012878417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.70811462402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.65906524658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.36256790161133, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08558654785156, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.217437744140625, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.10429382324219, \"water_flow\": 4938.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050018310546875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.13088607788086, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.88200378417969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.32933044433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.76619720458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.01019287109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.72476959228516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.11402130126953, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.96491241455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.5887680053711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.30728912353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.0732421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.15568542480469, \"water_flow\": 2623.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.8294677734375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.26095581054688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.01763916015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.1618423461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4010772705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.08792114257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.75728607177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.13353729248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5818862915039, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.9980239868164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3310089111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.715576171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.36968231201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.37351989746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.44599151611328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.790771484375, \"water_flow\": 850.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.8330078125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.44650268554688, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.04289245605469, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.83546447753906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.03102111816406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.25083923339844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.88575744628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.6168441772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.80207824707031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.84547424316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.35614013671875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.33963012695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.6751937866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.87437438964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.53096771240234, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.61161804199219, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.1356430053711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.59370422363281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.48393249511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.96281433105469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.76349639892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.18605041503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.08029174804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.58851623535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.23916625976562, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.81573486328125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.06431579589844, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.59210205078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6901092529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.22325134277344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.0650634765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.25308227539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.97833251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.57269287109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.84768676757812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.22425842285156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.8418426513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.64627075195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.4512176513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0598602294922, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.41754150390625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.60354614257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.4568328857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3002471923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.23907470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.6470184326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.69496154785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.14488220214844, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9810028076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.82889556884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.07963562011719, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6971664428711, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.27464294433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.97682189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.72420501708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.73645782470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.32414245605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.1347770690918, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.31204605102539, \"water_flow\": 871.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.88098907470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.06809616088867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.78390884399414, \"water_flow\": 233.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.232784271240234, \"water_flow\": 225.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.874149322509766, \"water_flow\": 211.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.99295425415039, \"water_flow\": 202.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.822208404541016, \"water_flow\": 169.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.89490509033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.32704544067383, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.646728515625, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.2281265258789, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.22396850585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.64547729492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1864013671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.88558959960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.59332275390625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.4368896484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.1683807373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.986083984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.49603271484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.3271942138672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.28213500976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6684112548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.59449768066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.25340270996094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.0020294189453, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.78990173339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.43203735351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.37496948242188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.43360900878906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.08345794677734, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2520523071289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.01563262939453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.19921875, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.88429260253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.29681396484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.47525787353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.38890838623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.06436157226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.397705078125, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.67454528808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.43512725830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.39849090576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.62946319580078, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.09062194824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.82646179199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.06581115722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.20195007324219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.39697265625, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.40316009521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.86129760742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.42886352539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.38917541503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.33827209472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.50171661376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.76372528076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.60292053222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.49061584472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.4419174194336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.77143859863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.92276763916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.0441665649414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.91574096679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.20541381835938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.80110168457031, \"water_flow\": 2708.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.42423248291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.26522827148438, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.48362731933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.57827758789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.28384399414062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.52629852294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.61650085449219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.00090026855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71963500976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.19013214111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.44662475585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.12223815917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.20061492919922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.9764404296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.21118927001953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.817440032958984, \"water_flow\": 3418.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.571990966796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.39916229248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.88774871826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.89083862304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.39909362792969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.74387741088867, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.1965217590332, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.52475357055664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.12025451660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.54782104492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.58580017089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.42070007324219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.50945281982422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.95945358276367, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.143707275390625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4872.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.62868881225586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.48446655273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.73101043701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.82546997070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.10803985595703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.90465545654297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.11460876464844, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.90824890136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.56245422363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.95681762695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.92778015136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.54207611083984, \"water_flow\": 2608.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.41529846191406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.36858367919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.52374267578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.02871704101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.48080444335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.93199920654297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.13774108886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.82640838623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.99942779541016, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.89216613769531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.86994171142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.16860961914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.42181396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.97412872314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.58912658691406, \"water_flow\": 871.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.49678039550781, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.71014404296875, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.37696838378906, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.76254272460938, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.99040222167969, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.17471313476562, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.53036499023438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.85791778564453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.42166900634766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.66522979736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.03687286376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.09004211425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.3094482421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.010986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.6775894165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.59676361083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.33427429199219, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.83822631835938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.45841217041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.30580139160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.18754577636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.97245788574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2587890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.34475708007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.09124755859375, \"water_flow\": 132.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.58045196533203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.32717895507812, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.07228088378906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4453582763672, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.75433349609375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.6450958251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.55198669433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 168.3347930908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.95852661132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.0175323486328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.32174682617188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.92340087890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.5220184326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.66552734375, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.05870056152344, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.95860290527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.76731872558594, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.46426391601562, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.67910766601562, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.12588500976562, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4870147705078, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.44219970703125, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5966796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.23960876464844, \"water_flow\": 146.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.99659729003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.94026947021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.40090942382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.96504974365234, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.06819915771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.38170623779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.08771514892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.65754318237305, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.75639724731445, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.022308349609375, \"water_flow\": 878.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.04045867919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.458740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.557987213134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.47271728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.22936248779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.1612663269043, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.98585891723633, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.14685821533203, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.37556838989258, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.39393615722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.35481262207031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.46142578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.6150894165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.39488220214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.62890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.69541931152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7218780517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.31932067871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.31146240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.02725219726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6068572998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.2449493408203, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.40789794921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.1665802001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.88523864746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.44297790527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.57896423339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.61666870117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.69566345214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.05833435058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.13369750976562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.68130493164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.18689727783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.64354705810547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.35655975341797, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.13288879394531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.75305938720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.34617614746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.19844818115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8235855102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.02531433105469, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.91542053222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.6789321899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.47052764892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.25440979003906, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8028564453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.05550384521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.91621398925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.83745574951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.829833984375, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.6092300415039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.3477783203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.52493286132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.24188995361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1483383178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.30443572998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.3206787109375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.36862182617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.07754516601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.86711120605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.14976501464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.9023666381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.885498046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.26959228515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.60684967041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.22003173828125, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.57503509521484, \"water_flow\": 2746.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.23323059082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.91419219970703, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.64120483398438, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.52561950683594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.1321029663086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.84632873535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6130142211914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.12997436523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.16216278076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.93489074707031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.90323638916016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.08251190185547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.82159423828125, \"water_flow\": 3387.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.46796798706055, \"water_flow\": 3406.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.34543991088867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.88639831542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.35688781738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.47062683105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.60957336425781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.762577056884766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.306556701660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.04922103881836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.8237419128418, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.2495346069336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.41741180419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.68392181396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.90406799316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.037479400634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.802406311035156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05007553100586, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4846.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.1754264831543, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.39610290527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.5109634399414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.96809387207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.92145538330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.80538177490234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.39625549316406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.99413299560547, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.38175964355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.47840881347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.27438354492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.88386535644531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.82127380371094, \"water_flow\": 796.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.9880142211914, \"water_flow\": 1809.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.09524536132812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.39730072021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.70612335205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.88410186767578, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.3134994506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.17588806152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.52268981933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2782211303711, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.39624786376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.43610382080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.69576263427734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.5759048461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.44791412353516, \"water_flow\": 1607.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.18360900878906, \"water_flow\": 731.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.38587951660156, \"water_flow\": 730.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.94650268554688, \"water_flow\": 729.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.58040618896484, \"water_flow\": 728.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.06791687011719, \"water_flow\": 727.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.0639877319336, \"water_flow\": 726.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.35975646972656, \"water_flow\": 725.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.6031494140625, \"water_flow\": 724.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.51444244384766, \"water_flow\": 723.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.7967758178711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.51056671142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.60336303710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.43508911132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97201538085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8105239868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.72610473632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.40306854248047, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.2078857421875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.61299896240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.122802734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.53705596923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.09707641601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.89117431640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.51380920410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.59194946289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.22431182861328, \"water_flow\": 142.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.75794982910156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.43270874023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.22352600097656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.55198669433594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.55223083496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.10597229003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.81605529785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.78082275390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.64378356933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.01052856445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.90269470214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.23109436035156, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.75633239746094, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.24069213867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.642578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.53823852539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.2878875732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.30442810058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.40843200683594, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.48809814453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.63058471679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0340576171875, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.52713012695312, \"water_flow\": 142.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.69830322265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.3621063232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.70794677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.46652221679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.46491241455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.61903381347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.96095275878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.3510971069336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.29452514648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.49309158325195, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.15268325805664, \"water_flow\": 883.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.2544059753418, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.651798248291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.12429428100586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.26788330078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.03646850585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.38124084472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.5863265991211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.85149383544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.62445831298828, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.24891662597656, \"water_flow\": 95.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.12334442138672, \"water_flow\": 93.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.07819366455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.7909164428711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.17982482910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.12974548339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.94155883789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.65237426757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.2319793701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0364532470703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.25083923339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.87384033203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.46148681640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.2980194091797, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9400177001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.18861389160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.38772583007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.90599060058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.4773712158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.95523071289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.35433959960938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.15716552734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.3743438720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.13681030273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.69386291503906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.96927642822266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.01774597167969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.24134826660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.23487854003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.68289184570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.65899658203125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.10305786132812, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.3497085571289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.37389373779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.39029693603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.09656524658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.00223541259766, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.7314453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.09141540527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.04849243164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.61967468261719, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.99070739746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.1202392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.22587585449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.55038452148438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.67764282226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.04315185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.32862854003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.57129669189453, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.75173950195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.55274963378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.52416229248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3189468383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.91307067871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.083251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.37249755859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.75072479248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.9423599243164, \"water_flow\": 2763.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.74968719482422, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.21580505371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.32443237304688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.10045623779297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.13945770263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.77676391601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.72957611083984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8365478515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.58567810058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.50425720214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.64388275146484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.32099914550781, \"water_flow\": 3380.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.899044036865234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.73616027832031, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.74601745605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.54332733154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.56388854980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.84588623046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.3100814819336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.4649658203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.06718063354492, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.04468536376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.636924743652344, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.03990936279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.73770141601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.20540618896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.8302116394043, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.44819259643555, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0624885559082, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4820.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.11317443847656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.73314666748047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.48158264160156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.82086181640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.30412292480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54031372070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.24862670898438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.8655776977539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.98686218261719, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.91409301757812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.41322326660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.05921173095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.1891860961914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.79710388183594, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.84686279296875, \"water_flow\": 783.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.0765380859375, \"water_flow\": 1808.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.6583023071289, \"water_flow\": 1803.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.1344223022461, \"water_flow\": 1800.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.2115478515625, \"water_flow\": 1792.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.41779327392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.18457794189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.41477966308594, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.96366882324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.1825180053711, \"water_flow\": 1720.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.56394958496094, \"water_flow\": 1716.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.57572937011719, \"water_flow\": 1631.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.16010284423828, \"water_flow\": 1629.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.03781127929688, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.0933837890625, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.36882781982422, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.97731018066406, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.12124633789062, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.4815902709961, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.47970581054688, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.05655670166016, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.64036560058594, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.20150756835938, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.64028930664062, \"water_flow\": 720.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.66519927978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.32493591308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.1057357788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.0997543334961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97830963134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.20057678222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.99732208251953, \"water_flow\": 244.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.99520111083984, \"water_flow\": 186.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.28462219238281, \"water_flow\": 183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.15045166015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.68489837646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.62197875976562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.30986785888672, \"water_flow\": 158.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.82614135742188, \"water_flow\": 154.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.5951919555664, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.61093139648438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.12498474121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.33584594726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.3619384765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.33566284179688, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.18759155273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.4850616455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 171.2484130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 168.99081420898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.51307678222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.13514709472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.37698364257812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.63778686523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.31521606445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.50466918945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.0117950439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.26248168945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5074005126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.98849487304688, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.01402282714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.41539001464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9825897216797, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.63223266601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.97808837890625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.14639282226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6505950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.19754028320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.25726318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.47185516357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.61351013183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.72076416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.58876037597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.55980682373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.4718017578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.981956481933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.956451416015625, \"water_flow\": 891.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.56883239746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.31798553466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.31534194946289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.81142044067383, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.39231872558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.32171630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.04602813720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.89994049072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.42374420166016, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.98062896728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.88109588623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.50275421142578, \"water_flow\": 92.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.61373901367188, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.91827392578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.95316314697266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.09425354003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.53326416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.66004943847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6215057373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.51150512695312, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.52345275878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9602508544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.31871032714844, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.86123657226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.24716186523438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.09661865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.29840087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.5470428466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.63702392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.3963623046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.53277587890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.8407440185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.53517150878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.45230102539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.17890167236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.04175567626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0426788330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.31669616699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.99346160888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8454360961914, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.93570709228516, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.21177673339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.81690979003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.74490356445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.64517211914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.48876953125, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03308868408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.67472076416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.30596923828125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.50234985351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.47334289550781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.85523986816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.82341003417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.83287048339844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.85346984863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.12104797363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.89690399169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.8635025024414, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.9727554321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.70941162109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8381118774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.19196319580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.26786041259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.88804626464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.46065521240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.29537200927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.72572326660156, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.51161193847656, \"water_flow\": 2785.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.36840057373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.8277359008789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.84791564941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.89717864990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.9833984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.38090515136719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.25548553466797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.93734741210938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.1346435546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.493019104003906, \"water_flow\": 3369.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.90380859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.04720306396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.39047241210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.55662536621094, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.8480224609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.16590881347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.91051483154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.14716339111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.40499114990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.55888366699219, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.960262298583984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.67350769042969, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.34920883178711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.38383483886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.7643814086914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.13230514526367, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.28215026855469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4792.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.731605529785156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.66600799560547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.08917236328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.86454010009766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.94239807128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.94354248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.9375228881836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.80272674560547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.4373779296875, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.86254119873047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.22823333740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.11184692382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.82693481445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.63094329833984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.88931274414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.57779693603516, \"water_flow\": 782.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.92897033691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.27686309814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.55921936035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.02880096435547, \"water_flow\": 1789.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.27265167236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.12456512451172, \"water_flow\": 1760.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.13700866699219, \"water_flow\": 1722.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.81558990478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.43305969238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.19843292236328, \"water_flow\": 80.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.62782287597656, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.76138305664062, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.68959045410156, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.9715576171875, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.02843475341797, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.04080200195312, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.36717987060547, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.51485443115234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.62445831298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.3586654663086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.49034118652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.48709106445312, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.93721008300781, \"water_flow\": 719.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.35712432861328, \"water_flow\": 716.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.33836364746094, \"water_flow\": 713.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.44419860839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.91961669921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.32601928710938, \"water_flow\": 246.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.69854736328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.93148040771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.21514129638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.98486328125, \"water_flow\": 179.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.07051086425781, \"water_flow\": 177.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.60050964355469, \"water_flow\": 170.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.79639434814453, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.12368774414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.15176391601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1069793701172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.40650939941406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.75930786132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.87681579589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.739990234375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.25128173828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.0396270751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 168.12986755371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.76365661621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.31475830078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.55418395996094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.5565185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.7404327392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.52589416503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.97560119628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.6829376220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.48548889160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.52272033691406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.69491577148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.5673065185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.93508911132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1772003173828, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.79359436035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.99844360351562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.47286987304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.0386199951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.942626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.91534423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.6112060546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.76891326904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.12857818603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.61772155761719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.71194839477539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.47911071777344, \"water_flow\": 929.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.213191986083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.31547164916992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.782920837402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.52735900878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.23311996459961, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.06888961791992, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.74501037597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.83171081542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.6363296508789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.40911865234375, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.50818634033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.85482788085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.7520523071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.32965850830078, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.98977661132812, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.4656753540039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.48829650878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.46058654785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2157440185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.60157775878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.77481079101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.32167053222656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.07566833496094, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.83534240722656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.97047424316406, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.60780334472656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.28855895996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.65464782714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.6641387939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.8277130126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.45777893066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.4266815185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.52975463867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.4115447998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.04127502441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.35951232910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.44410705566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8117218017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.35894012451172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.58350372314453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.51890563964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.14373779296875, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.85479736328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.53740692138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.73135375976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.895751953125, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.93295288085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.5236587524414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.76214599609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.29676055908203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.86273193359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.31358337402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.1762466430664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.95945739746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.77862548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.90794372558594, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.77648162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.28861236572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.46170043945312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.75054168701172, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.80194091796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.94660949707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.15805053710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.51235961914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.57518005371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.71623229980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.15673828125, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.88701629638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.86482238769531, \"water_flow\": 2810.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.95863342285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.3304443359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1940689086914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.88057708740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.44847869873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.77251434326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.13883209228516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.97994995117188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.62865447998047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.80818176269531, \"water_flow\": 3357.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.70936584472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.9810562133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.40595245361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.85164642333984, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.14569854736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7100601196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.82010650634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.41873168945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.4366455078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.94005584716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.037654876708984, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.55913162231445, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.57448959350586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.453369140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.34298706054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.479026794433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.611907958984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4721.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.56269836425781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.63626861572266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.38545227050781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.06922149658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.95294189453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.12757110595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.28456115722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.80599212646484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.38641357421875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.7613754272461, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.98590850830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.46652221679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7645492553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.25086212158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.43666076660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.65496826171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.79039001464844, \"water_flow\": 777.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.00077819824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.5006332397461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.64717102050781, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.74864959716797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.3935546875, \"water_flow\": 1769.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.73265838623047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1640396118164, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.56320190429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4129409790039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.83589172363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.87916564941406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.1552505493164, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.55976867675781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.3404769897461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.09172821044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.68148040771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.43934631347656, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.02053833007812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.99568939208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.3494644165039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95507049560547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.59741973876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.39828491210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.2829818725586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.32510375976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2899169921875, \"water_flow\": 707.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.23188781738281, \"water_flow\": 248.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.31256103515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.6165542602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.9365463256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.26667022705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.06039428710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5128402709961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.45559692382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0853271484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.39930725097656, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.4984893798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.56748962402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.2759246826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.57212829589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.51675415039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.2100067138672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.1553192138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.57266235351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.00674438476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.4650421142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.37786865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.82228088378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.635498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.9378204345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.65252685546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.7906036376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.73939514160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.96263122558594, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.61256408691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8101806640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.638427734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6512451171875, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.12928771972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.3922882080078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.6269073486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.27230834960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.79270935058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.69454193115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.35903930664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.16697692871094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.2625732421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.96723175048828, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.992313385009766, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.7186393737793, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.095584869384766, \"water_flow\": 933.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.38459014892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.34651565551758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.78132629394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.296485900878906, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.64412307739258, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.28555297851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.10691833496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.67723846435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.27747344970703, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.99636840820312, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.14391326904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.58444213867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.41230773925781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.15589141845703, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.84928894042969, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.38978576660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.93650817871094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.73963928222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.2671661376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.05006408691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.83119201660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.47119140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.64593505859375, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.39230346679688, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8566436767578, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8336639404297, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1544647216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.36172485351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.12660217285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.98448181152344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.45286560058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.13427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.69189453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.00027465820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.40924072265625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.08653259277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.50503540039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.37982177734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.63390350341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.55252075195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.49980926513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.66657257080078, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.61687469482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.50074768066406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.27574157714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.80455780029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.3759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.93634033203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.34878540039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.49995422363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.48878479003906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.24187469482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.26294708251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.89277648925781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.0510025024414, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.77887725830078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.25800323486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.44680786132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.01350402832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.42499542236328, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.0577392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.63601684570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.58851623535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.1253890991211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.05064392089844, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.819580078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.67803955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.45006561279297, \"water_flow\": 2814.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.23846435546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.8753433227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.42657470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1029052734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.20938110351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.85184478759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.94281768798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.38243865966797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.4072380065918, \"water_flow\": 3341.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.19363403320312, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.19441986083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.11815643310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.79246520996094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.53876495361328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.42863464355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.73908233642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.81182098388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.5233154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.68019104003906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.12617492675781, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.10310363769531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.79350662231445, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.720829010009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.904449462890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.99949645996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.28935241699219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.097068786621094, \"water_flow\": 4714.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0748291015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.80794143676758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.35787200927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.36372375488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.84242248535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.39212036132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.0697021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.68537902832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.99480438232422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.04431915283203, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.2718505859375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.56353759765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.68605041503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.62745666503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.13176727294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.04576110839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.20001220703125, \"water_flow\": 773.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.43474578857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.97978973388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.52764892578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.43390655517578, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.0926513671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.97356414794922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.71157836914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.05921936035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.96088409423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.16567993164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.28665161132812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.00618743896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.48478698730469, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.23815155029297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.26337432861328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.98481750488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.3419189453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.17576599121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.89374542236328, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.91159057617188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.72428131103516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.70399475097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.78977966308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.7659683227539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.02021789550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.41136169433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.70582580566406, \"water_flow\": 410.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.84812927246094, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.68467712402344, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.86727905273438, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.39966583251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.23876190185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.2849349975586, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.24894714355469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.70906829833984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.48703002929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.42486572265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.75399780273438, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.2153778076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.65444946289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.87796020507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.08200073242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.7731475830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.46046447753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.7560272216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.8314666748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.7289581298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.6566162109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.38113403320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.42617797851562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.75148010253906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.06825256347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.4752197265625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.11196899414062, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.19285583496094, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.25807189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.50479125976562, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.97634887695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2805633544922, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7353973388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.24661254882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.072998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.7131805419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.1477508544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.33682250976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.31668090820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.82189178466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.36947631835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.92155456542969, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.69281005859375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.5019416809082, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.78738784790039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.35999298095703, \"water_flow\": 938.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.907859802246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.27006912231445, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.5572624206543, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.73373794555664, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.620426177978516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.24214935302734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.58010864257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.58699798583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.04190063476562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.21217346191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.8265151977539, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.93811798095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.08891296386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.87271118164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.79080200195312, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.87641906738281, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.91131591796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.93417358398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9077911376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.40179443359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.30145263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.45193481445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.4031524658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.49244689941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.26771545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.63645935058594, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0366668701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.51551818847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.95120239257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2616729736328, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.43829345703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.34890747070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.12289428710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.26475524902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.54779815673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.55184173583984, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.70260620117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4108123779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0058135986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.94525146484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.44908142089844, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.45878601074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.62785339355469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.8150863647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.02661895751953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.36713409423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.60948181152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.6789779663086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.9063491821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.73876190185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.8001708984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.21023559570312, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.9526138305664, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.59254455566406, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.85734558105469, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.30165100097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.39042663574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.24787902832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.02545166015625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.6268539428711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.74381256103516, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.26502227783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.3752212524414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.6142349243164, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.81916809082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.7770004272461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.44117736816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.43753814697266, \"water_flow\": 2818.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.20328521728516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.22528076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.65342712402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.66645050048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.5344009399414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.7042465209961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.01614379882812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.88634490966797, \"water_flow\": 3281.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.11901092529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.38423156738281, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.55198669433594, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.0511245727539, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.76363372802734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.23336029052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.93949890136719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.55111694335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.1136703491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.55664825439453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.79509735107422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.94927978515625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.3349838256836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.31315612792969, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.38153839111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.64434051513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4705.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050350189208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0510368347168, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.13504409790039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.21647644042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.3678207397461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.17000579833984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.78306579589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.963134765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8015365600586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.01787567138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.86895751953125, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.4369888305664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.05789947509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.66799926757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.97198486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.12977600097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.3264389038086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.62443542480469, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.55487823486328, \"water_flow\": 764.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.46711730957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.9093246459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.84068298339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.16728973388672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.22293853759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.06978607177734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.78062438964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0416717529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.98683166503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.65245056152344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.75675201416016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.20925903320312, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.76710510253906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.25698852539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.25592041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.39482879638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.99208068847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6118392944336, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.64031219482422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.93990325927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.83480834960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.68927001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.06391906738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.23646545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.15401458740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.5278091430664, \"water_flow\": 393.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.39493560791016, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.77867889404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.67195129394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.83062744140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.22359466552734, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.76518249511719, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.50565338134766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.2704849243164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3167266845703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.27223205566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.62037658691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.48458862304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.06959533691406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.59422302246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.3861846923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.49667358398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.50323486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.50831604003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.9319305419922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.98980712890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 166.6341552734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.34194946289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.64732360839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.07273864746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.67503356933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.2565155029297, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.2183380126953, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.21725463867188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.75778198242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8339080810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.67933654785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3675537109375, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.66416931152344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.75755310058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9015350341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.02467346191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.79425048828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.9151611328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.79339599609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.63963317871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.78988647460938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.600341796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.01322937011719, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.75878143310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.031578063964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.96244430541992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.69774627685547, \"water_flow\": 942.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.340553283691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.53146743774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.996273040771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.67724609375, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.80726623535156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.39335632324219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.66969299316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.58580017089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.75116729736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.97570037841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.0245590209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.06242370605469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2911376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.25559997558594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.3681869506836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.04031372070312, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.9689712524414, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.23133087158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.94158935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.80746459960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.90280151367188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.89620971679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.25904846191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.76275634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5992889404297, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.66061401367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.35557556152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.10446166992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3159942626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8878631591797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.75936889648438, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.75808715820312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5263214111328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.19293212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.43089294433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5705795288086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.21147155761719, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.98701477050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.05583190917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7770004272461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.41300964355469, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.28887176513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.36740112304688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.69537353515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.09664154052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.05374908447266, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.47798156738281, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.91680908203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.55042266845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.59014129638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.3337173461914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.91490936279297, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.02367401123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.53831481933594, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.73838806152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.47701263427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.74532318115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.29814910888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.6485366821289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.36185455322266, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.4779281616211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.18923950195312, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.2253646850586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.26001739501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.7858657836914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.52306365966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.25263214111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.08763122558594, \"water_flow\": 2823.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.53760528564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.2947998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.38247680664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.79011535644531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.50640106201172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.44673919677734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.82573318481445, \"water_flow\": 3271.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.15652465820312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.10014343261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.8498306274414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.36035919189453, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.39675903320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.03952026367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.34217071533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.86222076416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.71133422851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.43968200683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.93889617919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.98259735107422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.7433853149414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.09812927246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.7672233581543, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050716400146484, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4629.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05016326904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.66096878051758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.29227066040039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.556068420410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.93118286132812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.4526596069336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.1857681274414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.21821594238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.61320495605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.94744873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.92665100097656, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.27499389648438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7554473876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.96737670898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.44956970214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0988311767578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.94236755371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.36664581298828, \"water_flow\": 760.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.75406646728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.72012329101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.58235931396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.42000579833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.81795501708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.17951965332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.47186279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.18604278564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.46175384521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.95997619628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.04580688476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.7825698852539, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.9373550415039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.28659057617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.49492645263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.36824035644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.60227966308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.66751861572266, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.98291778564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.73422241210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.88427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.15196990966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.46284484863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.34492492675781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.48130798339844, \"water_flow\": 391.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.85662078857422, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.9167709350586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.57577514648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.1733627319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.94873809814453, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.0627212524414, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.52993774414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.717041015625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.73564147949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.79217529296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.90554809570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.8069610595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.23568725585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.35682678222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.4808349609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7255401611328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.22784423828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.04071044921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.5130615234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.206787109375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.48826599121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.31283569335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.26283264160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.49098205566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.74697875976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.5941925048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.4442138671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.93118286132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6993408203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.34063720703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.73866271972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.87228393554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.92799377441406, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.32876586914062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.67730712890625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.91134643554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.95266723632812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.66790771484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.09530639648438, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.09563446044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.10725402832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.4856185913086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.25518798828125, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.41024780273438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.60028839111328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.176025390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.74760437011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.99394226074219, \"water_flow\": 946.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.732421875, \"water_flow\": 170.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.87928771972656, \"water_flow\": 168.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.40495300292969, \"water_flow\": 165.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.89461135864258, \"water_flow\": 140.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.54945755004883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.30612564086914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.981689453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.85578155517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.31283569335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0280303955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8665771484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.49468231201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.34069061279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.96699523925781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.78221130371094, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.06428527832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.69511413574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.16888427734375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.75531768798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.33128356933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.39805603027344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.66616821289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.48892211914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.84231567382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.10194396972656, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.19810485839844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.97752380371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.3922119140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1844024658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.90406799316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.69857788085938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.44935607910156, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2395782470703, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.39578247070312, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.9594955444336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43695831298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71771240234375, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.16663360595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.36540222167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.5077133178711, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.5346450805664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.24185943603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.84251403808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.89020538330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.69477081298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3876724243164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.32783508300781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.9656753540039, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.24574279785156, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.99134826660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.11188507080078, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.30245971679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.38017272949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.45988464355469, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.02980041503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.0510482788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.46765899658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.6860580444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.24612426757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.4435043334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.25613403320312, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.64729309082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.1312026977539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0453109741211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.90953063964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.25071716308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.92662048339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.8232650756836, \"water_flow\": 2826.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.38999938964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.40628814697266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.42662048339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.01473999023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.68924713134766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.46942138671875, \"water_flow\": 3252.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.29665756225586, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.1281509399414, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.00630950927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.68769073486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.89075469970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.14020538330078, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.43863677978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.31414031982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.41065979003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.16698455810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.4982681274414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.92878723144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.47904968261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.29969024658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.35545349121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.06492233276367, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05222702026367, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4594.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07122802734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.04548645019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.20682907104492, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.441856384277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.77946090698242, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.13196563720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.13213348388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.2325210571289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.54747772216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.5868911743164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.25656127929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.52479553222656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.79832458496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.826904296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.02174377441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.68959045410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.974853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9578857421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.26165008544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.47730255126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.95147705078125, \"water_flow\": 757.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.73973083496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.8617935180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.79896545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.44548797607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.71710968017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.8788070678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.26911163330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.77116394042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.67400360107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.58880615234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.3903579711914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.92112731933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.86114501953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.07952880859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.33348846435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.58563995361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.75882720947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.03594207763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.12737274169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.77207946777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.14470672607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97181701660156, \"water_flow\": 384.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.42559814453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.27537536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.83175659179688, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.19226837158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.61250305175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.41801452636719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.1434555053711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.5861587524414, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.03439331054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3385772705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5769500732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.5437774658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.2877197265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.02734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.58274841308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5880126953125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.8003387451172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.89529418945312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.6791229248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.3345184326172, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.8605499267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.10189819335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.8267059326172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.57791137695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.92086791992188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.76089477539062, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.9632568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.1250762939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.72154235839844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.36073303222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.27883911132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.78143310546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.81959533691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.3370361328125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.56622314453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.86090087890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.8706817626953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.94638061523438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.00352478027344, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.53048706054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.50105285644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.01611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.51974487304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.6098403930664, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.05799102783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.54906463623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.209163665771484, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.31159591674805, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.221168518066406, \"water_flow\": 1119.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.99041748046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.53055953979492, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.019893646240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.34021759033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.127506256103516, \"water_flow\": 135.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.07733154296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.742347717285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.51091003417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.92559051513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.06373596191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0979461669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.776611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.97272491455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.1943359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.76077270507812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.28909301757812, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.63475799560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.28688049316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.48612213134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.85154724121094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.81689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.02281188964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9916534423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.20713806152344, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.37631225585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.37599182128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.65855407714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5266571044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.80514526367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7187957763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.42466735839844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.05052185058594, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.03819274902344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.46430206298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.86772918701172, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.6835708618164, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.75419616699219, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.00260162353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.763671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.37696838378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.00241088867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.59211730957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.88546752929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1504669189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.56576538085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.88640594482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.12557220458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.31523132324219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.80376434326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.98611450195312, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.19019317626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.3348617553711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.263916015625, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.08792877197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.61839294433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.46861267089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.31392669677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.43228149414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9992446899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.35078430175781, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.68179321289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.53945922851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.65191650390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.80110168457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.4925537109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.25293731689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.53511047363281, \"water_flow\": 270.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.94880676269531, \"water_flow\": 3188.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.94031524658203, \"water_flow\": 3191.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.56681823730469, \"water_flow\": 3196.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.94071960449219, \"water_flow\": 3204.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.89887237548828, \"water_flow\": 3245.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.37938690185547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.8922348022461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.55120086669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.88206481933594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.60293579101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.86599731445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.91226959228516, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.69380187988281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.21306610107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.46898651123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.17935180664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.31990051269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.29165649414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.32390594482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.17340850830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.02312469482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.27170181274414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.15003967285156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.86924362182617, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06047821044922, \"water_flow\": 4589.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.31263732910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.0630989074707, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.7620964050293, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.15702819824219, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.2735366821289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.47891235351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.41886138916016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.08904266357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.72080993652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.66149139404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.40283203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5470428466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.08546447753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.82476806640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9372100830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.219482421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.06663513183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.66447448730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.24584197998047, \"water_flow\": 751.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.70851135253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.8524398803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.891357421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.71723175048828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.67498779296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.13307189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.604248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.1537857055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.67731475830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.62960815429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.57135009765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.3274917602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.79559326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.48056030273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.71931457519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.27204132080078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.81499481201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.24878692626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.12027740478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.1950454711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8818588256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.53933715820312, \"water_flow\": 375.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.10138702392578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.25743103027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.74234771728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.97379302978516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.52454376220703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.36131286621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0091552734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0253143310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.68437194824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.44642639160156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.64303588867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.76524353027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.79653930664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.20697021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.8920440673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.02197265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.2168426513672, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.1968994140625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.97732543945312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.19741821289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.87380981445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.45513916015625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.6728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.763916015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.05758666992188, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.79502868652344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.30459594726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.37379455566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.2168731689453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.34283447265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.24273681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.13934326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.84056091308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.58995056152344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.69546508789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.90736389160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.92254638671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9043731689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.92906188964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.863525390625, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.48681640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.15718841552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.7383804321289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.18014526367188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.44775390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.50350189208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.39249420166016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.54227828979492, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.7321891784668, \"water_flow\": 1130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.226593017578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.616764068603516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.30488586425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.72792053222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.49638366699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.77501678466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.067115783691406, \"water_flow\": 129.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.736122131347656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.82311248779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.56975555419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1982421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.60081481933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.72166442871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.86268615722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.47151184082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.97249603271484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.73709869384766, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.68991088867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.10205078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.24896240234375, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.94380187988281, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.28202056884766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.31216430664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7880096435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.44180297851562, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0393829345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.18927001953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0950469970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.61424255371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.10140991210938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.59011840820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.97451782226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.54957580566406, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4990997314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.20973205566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.4009017944336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.17430114746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.83927154541016, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.75730895996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.18299102783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.653076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.43099212646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.00465393066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.45834350585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.05513000488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.20677185058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.08638763427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.89362335205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.3808822631836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.77238464355469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.0601577758789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.72901153564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.84549713134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.44173431396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.8025131225586, \"water_flow\": 82.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.09486389160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.47936248779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4134292602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.0087661743164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.79476165771484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.34119415283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.85570526123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.72976684570312, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.00505828857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.32176971435547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.35443878173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.338623046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.19652557373047, \"water_flow\": 265.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.30203247070312, \"water_flow\": 91.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.92418670654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.1156997680664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.51522064208984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.10118865966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.80107116699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.14724731445312, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.09425354003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.17212677001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.70500946044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.3748550415039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.45628356933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.2468032836914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.71360778808594, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.2876205444336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.81861877441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.38269805908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.0603256225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.93116760253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.48538970947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.11800384521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.61630249023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.82933807373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.07217788696289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.01666259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.763057708740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4586.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.140769958496094, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.642478942871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.12702560424805, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05584716796875, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05000686645508, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.15656280517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.63843536376953, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.78733825683594, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.84723663330078, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.0129623413086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.54800415039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.37672424316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.28773498535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.69473266601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.77789306640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7440643310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.71334838867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.06378173828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.80747985839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.22203826904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.61406707763672, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.70939636230469, \"water_flow\": 221.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.95298767089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.01261138916016, \"water_flow\": 528.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.9189682006836, \"water_flow\": 522.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.97894287109375, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.77732849121094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.19449615478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.25704956054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.17000579833984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.6590576171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.6264419555664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.00531005859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.82041931152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5503692626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.29522705078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.91547393798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.51274108886719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.56011199951172, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.11538696289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9177017211914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.88304138183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.74737548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.50676727294922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.2883071899414, \"water_flow\": 366.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.18486785888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.31282806396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.92095184326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.4993667602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.06542205810547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.06768798828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1436004638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.75379943847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.04158020019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.60267639160156, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.58956909179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.72677612304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.10060119628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.94894409179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.26617431640625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.65968322753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0553436279297, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.04981994628906, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.38165283203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.95648193359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.89639282226562, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.72357177734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2734832763672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.36395263671875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.50839233398438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.23699951171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.76083374023438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9200439453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.26307678222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.30909729003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.50245666503906, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.58706665039062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.63453674316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7576446533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.91473388671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9580535888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.92263793945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.66282653808594, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.31146240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.76188659667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.41502380371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.52374267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.61583709716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.10369873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.6436538696289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.757598876953125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.90614700317383, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.730133056640625, \"water_flow\": 1149.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.128482818603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.56083297729492, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.47090148925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.60596466064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.23002624511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.99198913574219, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.99636459350586, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.25243377685547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.38604736328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.7068862915039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.72915649414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4003143310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3899688720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.33522033691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2064208984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.35393524169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.15933990478516, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.77317810058594, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.31470489501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.96540832519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.273681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.76651763916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3482437133789, \"water_flow\": 82.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.94438934326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6259307861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.32984924316406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2115936279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.29336547851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.85751342773438, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.62120056152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.17422485351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.15968322753906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.49520874023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.44920349121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.97877502441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.67413330078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.03929138183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.80410766601562, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4159927368164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0562744140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.49193572998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.2135238647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.45999145507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.10653686523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.00762939453125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.29351043701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.83850860595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.05863189697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.11779022216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9871597290039, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.02349853515625, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.35236358642578, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.78504943847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.49929809570312, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.01164245605469, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.13700103759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.86410522460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.70183563232422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.86283874511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.5279312133789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.1413345336914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.48135375976562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.95572662353516, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.51753234863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.35576629638672, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.17457580566406, \"water_flow\": 259.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.90678405761719, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.90158081054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.32611083984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.04367065429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.49089050292969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.7353744506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.10357666015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.56710052490234, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.69425201416016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.50125885009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.3611068725586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.4435806274414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.20918273925781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.4986801147461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.253662109375, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.85330963134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.2217025756836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.7305908203125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.75912475585938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.64773559570312, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.47904968261719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.48815155029297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.33289337158203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.00951385498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.02378845214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.828285217285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.709659576416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4568.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06130599975586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.150230407714844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.369319915771484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.15172576904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.47193908691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.74337768554688, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.27010345458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.19529724121094, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.82743835449219, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.67096710205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.0926513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.36349487304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0285186767578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9479522705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7289276123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3819580078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.86502075195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.88176727294922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.85736083984375, \"water_flow\": 210.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.55269622802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.88675689697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.0161361694336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.64654541015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.96183776855469, \"water_flow\": 496.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.62371063232422, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.80168914794922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.66630554199219, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.70793151855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7471694946289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.0733642578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8833236694336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.13945770263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.30750274658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.27021026611328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.9460678100586, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4869384765625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.85336303710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4068603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.30081176757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.11876678466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.426513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.75263214111328, \"water_flow\": 357.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.52503967285156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.34028625488281, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.01226806640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.74993896484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.4060821533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.49331665039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.17080688476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.94822692871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4075164794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.39771270751953, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.63312530517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.14830780029297, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.10811614990234, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6862030029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.61131286621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.70359802246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1241455078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.68701171875, \"water_flow\": 189.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.39212036132812, \"water_flow\": 169.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4034423828125, \"water_flow\": 152.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.91842651367188, \"water_flow\": 148.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.14784240722656, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.01315307617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6821746826172, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.93002319335938, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.63059997558594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.89877319335938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5967559814453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.19461059570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.07374572753906, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.15916442871094, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.47048950195312, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.73876953125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.75311279296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.8897247314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6190948486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.49603271484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5222625732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.88450622558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.6821746826172, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.81295776367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.16819763183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.75106811523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.38475799560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.69603729248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0535888671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.38426208496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.63777542114258, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.817291259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.33724594116211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.4179801940918, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.254207611083984, \"water_flow\": 1153.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.18238067626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.320045471191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.94229125976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.55493927001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.7178726196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.73331069946289, \"water_flow\": 110.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.8298110961914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.03289794921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.37230682373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.17664337158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.037109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.11883544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.14492797851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.58810424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.4211196899414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.83386993408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.0616455078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.76802825927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.21849822998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.28694152832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.82322692871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.22020721435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.96900177001953, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.25456237792969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.10607147216797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.03612518310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.19497680664062, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.02423095703125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.36407470703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.13778686523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.66595458984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.382568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.92718505859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.33047485351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0803680419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.88680267333984, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.09180450439453, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1422348022461, \"water_flow\": 100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.09446716308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.15052795410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.1449203491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.20549011230469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.71846771240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.36042785644531, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0970230102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.05364227294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.10882568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.1657485961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.82343292236328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.06568908691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.22463989257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.47317504882812, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.02933502197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.22592163085938, \"water_flow\": 112.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.99516296386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.02373504638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.69972229003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.15894317626953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.1371841430664, \"water_flow\": 175.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.44158935546875, \"water_flow\": 180.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.58141326904297, \"water_flow\": 185.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.81304168701172, \"water_flow\": 193.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.97816467285156, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.50782775878906, \"water_flow\": 203.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.49981689453125, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.96187591552734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.61026000976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.88897705078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.84749603271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.31912231445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.59245300292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.07062530517578, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.13811492919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.96566772460938, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.97859191894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.93830108642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.56732940673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.78744506835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.43978881835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.01702117919922, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.94354248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.41239929199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.00135040283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.98015594482422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.01028442382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.01297760009766, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.2619400024414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.57759094238281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.99494552612305, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.774776458740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.7397575378418, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05414962768555, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4463.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.059207916259766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.401092529296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.64054107666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.3258056640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.38367462158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.3459701538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.52397155761719, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.64724731445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.1319351196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.908447265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.4157943725586, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.63716125488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.55399322509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.00215148925781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.894287109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.04403686523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.04965209960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3533935546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.45724487304688, \"water_flow\": 206.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.62926483154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.33210754394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.19727325439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.09021759033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.85400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.06029510498047, \"water_flow\": 492.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.3991470336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.67607116699219, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.7612075805664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.82894134521484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.57091522216797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.77700805664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.01637268066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.27853393554688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.14414978027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.277587890625, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.50244140625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.92047882080078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.84613037109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.14165496826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.30663299560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.83016967773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.58660125732422, \"water_flow\": 353.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.15509796142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.15089416503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.40216064453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.62004852294922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9033966064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7572479248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.177001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.1852569580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4192352294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.09007263183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.80348205566406, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.25566864013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.15673828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.82785034179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.42498779296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0830078125, \"water_flow\": 203.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.54849243164062, \"water_flow\": 198.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.94190979003906, \"water_flow\": 192.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.86328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.33229064941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.84869384765625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1933135986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.12091064453125, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.10809326171875, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.17987060546875, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6967010498047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.13697814941406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.56556701660156, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.54505920410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.57595825195312, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.49203491210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.26673889160156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5359649658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.09999084472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.88003540039062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.57125854492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.83555603027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.2142333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.61741638183594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.37298583984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.79579162597656, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.82846069335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.42727661132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.9444808959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.50977325439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.21727752685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.66197967529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.40413665771484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.68815994262695, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.758445739746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.94320297241211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.19178009033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.56009864807129, \"water_flow\": 1157.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.87000274658203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.09125900268555, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.79039001464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.53487396240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.2030029296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.48824310302734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.16431427001953, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.09947204589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.39408874511719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.30593872070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.23363494873047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.63424682617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.80018615722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.38885498046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.69388580322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.63931274414062, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.24555969238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.90730285644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.16258239746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2828598022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.81802368164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.98453521728516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.63807678222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.35559844970703, \"water_flow\": 95.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.78677368164062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.86649322509766, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.82861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.90072631835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.66461181640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.04246520996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.76449584960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.00575256347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.354248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.25706481933594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3215789794922, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.80204772949219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.5929183959961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.2670669555664, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.08160400390625, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.6607666015625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.78759002685547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.97447204589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.65144348144531, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.08541107177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.41163635253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.68716430664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.12014770507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.3209457397461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.02850341796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.13418579101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.44376373291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.0675277709961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.33009338378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.99455261230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.24615478515625, \"water_flow\": 132.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.42008209228516, \"water_flow\": 158.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.93295288085938, \"water_flow\": 162.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.55506134033203, \"water_flow\": 169.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.68018341064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.00123596191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.08290100097656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.5898666381836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.35673522949219, \"water_flow\": 202.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.41685485839844, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.59414672851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.4866714477539, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.64295959472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.30970001220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.4120101928711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.1203842163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.4329833984375, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.48269653320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.38054656982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.90293884277344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.06952667236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.65433502197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.10047149658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.97599792480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.21556091308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.40308380126953, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.22232818603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.74775695800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.83496856689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.66854095458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.46793365478516, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.21573638916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.25979614257812, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.8161506652832, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.023529052734375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.92073440551758, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.68025207519531, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0629768371582, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.257633209228516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.15636444091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4462.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05152893066406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.19737243652344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.65086364746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.35899353027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.07862854003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.49893188476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.79400634765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.82487487792969, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.20280456542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.73554229736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.90421295166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.7926025390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.66710662841797, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.03107452392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.47605895996094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.65312957763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.02433013916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.30717468261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.45507049560547, \"water_flow\": 198.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.54703521728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.20620727539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.81344604492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.44384765625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.64925384521484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.6249771118164, \"water_flow\": 489.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.72122955322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.42224884033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.5539321899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.25617218017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.16881561279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7055435180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.14315032958984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.97098541259766, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.6173324584961, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2679214477539, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.67755126953125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.57879638671875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.40670776367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.04862976074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7787857055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.30977630615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.02604675292969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36824798583984, \"water_flow\": 344.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.15613555908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.72248840332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.31964111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.09500122070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.1516342163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.71390533447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1046600341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.66229248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.4164047241211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.97944641113281, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.36258697509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.85584259033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9879913330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0864715576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.62179565429688, \"water_flow\": 209.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.27426147460938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5701141357422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.28033447265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.47000122070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.64881896972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.01083374023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.9254608154297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.23196411132812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0927276611328, \"water_flow\": 115.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.95269775390625, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.67782592773438, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9864044189453, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.63792419433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.46742248535156, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5040740966797, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.46197509765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.93927001953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.96435546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.73834228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.64584350585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.10598754882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.6273956298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.2295684814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.87860107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.31607055664062, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.48757934570312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.94613647460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.6385040283203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.82843780517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.26346588134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.3183822631836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.134033203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.75564575195312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.44955062866211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.32528305053711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.55312728881836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.22110366821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.175466537475586, \"water_flow\": 1163.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.18156051635742, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.24836730957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.64888381958008, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.94955444335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.6500244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.41864776611328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.61524963378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.39655303955078, \"water_flow\": 95.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.17819213867188, \"water_flow\": 85.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.23707580566406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.36726379394531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.38351440429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.51393127441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9444808959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.83357238769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.76007080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.76676940917969, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.71144104003906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.01637268066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.90874481201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.658935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.50997924804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.5631332397461, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1478271484375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.42255401611328, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.6614761352539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.48036193847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5577392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.81884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.77500915527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.87435913085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.73960876464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1440887451172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.30552673339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.70494079589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.70785522460938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.47277069091797, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.0493392944336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.014404296875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.53695678710938, \"water_flow\": 118.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.50228118896484, \"water_flow\": 125.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.84933471679688, \"water_flow\": 153.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.47254180908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.26665496826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.81478881835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.39166259765625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.9994125366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.54412841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.79000854492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8957748413086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.04120635986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.22024536132812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.13719940185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.4936752319336, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.48683166503906, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.21989440917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.0073471069336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.45008087158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.08897399902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.91566467285156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.76349639892578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.4674072265625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.6830062866211, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.24172973632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.42007446289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.71559143066406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.79473114013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.1896743774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.84242248535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.9037094116211, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.94542694091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.42556762695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.00909423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.3484115600586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.22843170166016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.36634063720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.02360534667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.83960723876953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.04232788085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.32234954833984, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.8163070678711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.80137634277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.94133758544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.91691589355469, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.39315795898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.10977935791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.5670166015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.4842758178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.88929748535156, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.8073616027832, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.1424560546875, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.523902893066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.99074935913086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.64473342895508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.737728118896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4461.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.463924407958984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.97250366210938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.83460998535156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.58143615722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.92176818847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.47203063964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.89044189453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.9298095703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.21884155273438, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.8483123779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.35441589355469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.44837188720703, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.461181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.76148223876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.9969711303711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.93936920166016, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.43882751464844, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.43782806396484, \"water_flow\": 191.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.50161743164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.47584533691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.172607421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.54326629638672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.90886688232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.2247085571289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.84467315673828, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.12057495117188, \"water_flow\": 450.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.0976333618164, \"water_flow\": 444.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.34636688232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.82337188720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.52937316894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.15801239013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.0560531616211, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.6069564819336, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2658920288086, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.61823272705078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8173599243164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.892578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.7023696899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.2454833984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.19053649902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.63001251220703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.21871948242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.95050811767578, \"water_flow\": 337.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.65082550048828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.84158325195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.2255859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.87061309814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2322998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.67469024658203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9425506591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7135467529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.12551879882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.04851531982422, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.17479705810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.63092041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.98372650146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.32231903076172, \"water_flow\": 214.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.93060302734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.139892578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.94204711914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.36534118652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5084686279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9207305908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9605255126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.58853149414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.91429138183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7709197998047, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.367431640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.79110717773438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.45669555664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.01617431640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.27284240722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.01124572753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.31654357910156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.70875549316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.36207580566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.98057556152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.9262237548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.8659210205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.68826293945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.00416564941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.62840270996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.60675048828125, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.75389099121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.29107666015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6183624267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.74686431884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.24913787841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.81942749023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.67439270019531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.65593719482422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.31144332885742, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.04642868041992, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.378700256347656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.38044738769531, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.96219253540039, \"water_flow\": 1168.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.94935989379883, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.466285705566406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.254215240478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.76798248291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.07626342773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.46144104003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.78102111816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.32936096191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.12075805664062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.76876068115234, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.42865753173828, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.07768249511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.87286376953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.56727600097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.81319427490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.51665496826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.04918670654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.3743667602539, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.07453918457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.0761489868164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.22542572021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.12958526611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.70079803466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.72418212890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.08234405517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.96406555175781, \"water_flow\": 135.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.89605712890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.13052368164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.21424865722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.9500732421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.8401641845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.78611755371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.2788848876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.71554565429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.13072204589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9408721923828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.22503662109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.79657745361328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.64166259765625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.82360076904297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.72087097167969, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.9168701171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.14131164550781, \"water_flow\": 158.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.39766693115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.74703216552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.2651596069336, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.69927978515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.1202621459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.20655822753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.96257781982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8651351928711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.65898895263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.22310638427734, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.9607925415039, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.99612426757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.77226257324219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.78113555908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.46831512451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.34693145751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.32149505615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.71249389648438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.10639953613281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.98670959472656, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.2242660522461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.25281524658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.71924591064453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.48131561279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.29447174072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.84587097167969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.02263641357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.51266479492188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.94368743896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.95457458496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.02909088134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.77908325195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.47621154785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.04242706298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.26274108886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.34928131103516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.16312408447266, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.48161315917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.91724395751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.30693054199219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.19416046142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.63917541503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.26705169677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.37174224853516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.0691146850586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.224002838134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.088218688964844, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.62214660644531, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.9879035949707, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.66006469726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.660560607910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.674617767333984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4432.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050018310546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.8038558959961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.3347930908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.69557189941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.51573181152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.601318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.14199829101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.09280395507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.82318115234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7183380126953, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.37063598632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.67181396484375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.62147521972656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.5302963256836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.79006958007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.95832824707031, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.37808227539062, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.73202514648438, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.52481079101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.06465148925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.78544616699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.83396911621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.5983657836914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.59307861328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.58184051513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.56045532226562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1379165649414, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.31238555908203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.92827606201172, \"water_flow\": 442.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.85484313964844, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.57833099365234, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.66441345214844, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.53206634521484, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.48823547363281, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.3485336303711, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.79572296142578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.42279052734375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.75711822509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.99776458740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.05142211914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.92106628417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6165542602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.9205093383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.5338363647461, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.06188201904297, \"water_flow\": 313.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.55699920654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.48603057861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.59672546386719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.67601013183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.57259368896484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.03436279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.4714584350586, \"water_flow\": 267.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.33917236328125, \"water_flow\": 262.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.88987731933594, \"water_flow\": 233.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.08586883544922, \"water_flow\": 230.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.50798797607422, \"water_flow\": 224.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.20098114013672, \"water_flow\": 219.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.7318344116211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.41860961914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.40939331054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.99696350097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.4293670654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.31573486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.0199432373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.1103515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.98492431640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.11715698242188, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.00604248046875, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.30699157714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0854034423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.92100524902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.8898162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.2349853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.73733520507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.62353515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.09486389160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.56112670898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.70309448242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.3493194580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.46180725097656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.9532012939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7745819091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.81497192382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0230712890625, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.82069396972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7040252685547, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.61819458007812, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.36613464355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.07991790771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.73152160644531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.25200653076172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.37223815917969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.560302734375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.9421272277832, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.018672943115234, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.82627487182617, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.90018081665039, \"water_flow\": 1183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.100303649902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.18558120727539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.31879425048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.08421325683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.54444122314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.21316528320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.9804916381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.70157623291016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.57515716552734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.56681823730469, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.57886505126953, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.16468811035156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.42350769042969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8786849975586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.40766906738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.3836898803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.71974182128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.67394256591797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.61113739013672, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.74778747558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.14669799804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.45437622070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.11265563964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.26171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.92696380615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.40863037109375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.67064666748047, \"water_flow\": 140.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.64014434814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2791748046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.3596954345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.31021118164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.94186401367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.06468200683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.53875732421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.10838317871094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.94168090820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7174835205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4900360107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6999282836914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.71148681640625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.9769515991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.95079803466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.22621154785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.14266204833984, \"water_flow\": 162.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.00165557861328, \"water_flow\": 174.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.14936828613281, \"water_flow\": 191.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.4405288696289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.54615020751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.75431060791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.55228424072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.48014068603516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.38882446289062, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.26641082763672, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.6578598022461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.99991607666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.54195404052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.26314544677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.85443878173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.09984588623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.58140563964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.48017883300781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.03775024414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.81300354003906, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.89462280273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.46417999267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.51521301269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.77051544189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.07445526123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.95369720458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.8412857055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.55916595458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.41449737548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.10612487792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.457763671875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.09056091308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.64689636230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.94694519042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.61170959472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.0212631225586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.02312469482422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.53368377685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.44621276855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.59159088134766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.10249328613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.83567810058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.14789581298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.41841888427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.46507263183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.8985710144043, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.2856559753418, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.09528350830078, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.16448974609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.77250671386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.789798736572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.73286819458008, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4372.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.15461730957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.3768310546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.723876953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.37184143066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.8368377685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.32171630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.6879425048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.55447387695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.0425567626953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.57177734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.50921630859375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.37425231933594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.66799926757812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.82595825195312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.47306060791016, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.77814483642578, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.04130554199219, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.28804779052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.5827865600586, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.91876220703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.98108673095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.60621643066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.8779067993164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.82315063476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.6327133178711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.10362243652344, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.31778717041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.16748046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.65467834472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.22358703613281, \"water_flow\": 373.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.64653778076172, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.59671020507812, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.50825500488281, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.44841766357422, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.51993560791016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.96719360351562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.7547378540039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2537612915039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.22931671142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4165267944336, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9912109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.39948272705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.78509521484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.31981658935547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.09122467041016, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.0215072631836, \"water_flow\": 312.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.17151641845703, \"water_flow\": 289.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.60330200195312, \"water_flow\": 285.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.7708740234375, \"water_flow\": 283.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8724365234375, \"water_flow\": 276.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.66551208496094, \"water_flow\": 274.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.86595153808594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.57789611816406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.93278503417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.48858642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.22047424316406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.01537322998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6963653564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.65011596679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.14244079589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.50323486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.78358459472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.52960205078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.0981903076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1125946044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.72549438476562, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9153289794922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.2357940673828, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1730194091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6964569091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.95797729492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.91162109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7932586669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.219970703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.2482452392578, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.51419067382812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.4255828857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.5901336669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.74755859375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.64610290527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.12271118164062, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.75421142578125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1020965576172, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6829071044922, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.96316528320312, \"water_flow\": 122.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.09388732910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.82183837890625, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.3411865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.19464874267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.0527572631836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.75132751464844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.839813232421875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.95256042480469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.060489654541016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.452205657958984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.660423278808594, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.061872482299805, \"water_flow\": 1186.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.75536346435547, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.96126937866211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.169769287109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.75615310668945, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.81236267089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.1551513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.31470489501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.1535873413086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.25961303710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.65179443359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.99164581298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.6050796508789, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.71768188476562, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.96737670898438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.7583999633789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.42890930175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.61487579345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.56556701660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.51227569580078, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.41777038574219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.3383560180664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.64259338378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.21943664550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.2367935180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.66537475585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.40291595458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.33524322509766, \"water_flow\": 147.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.49810028076172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0981216430664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.82057189941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4614715576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.2628173828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.27870178222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.24383544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.15802001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.62696838378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.2964630126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.19546508789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.33859252929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.60577392578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.47052001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.7431640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0338363647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.51351928710938, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.24726867675781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.81015014648438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.44821166992188, \"water_flow\": 202.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.15115356445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.45362091064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.94226837158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.90110778808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.3956069946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.92613220214844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.65593719482422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.42647552490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.97595977783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.15157318115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9073486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.33714294433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.70027923583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.97885131835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.49070739746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.05541229248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.58924865722656, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.91549682617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.80474853515625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.21505737304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.61908721923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.51559448242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.4280776977539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.02149200439453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.14347839355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.202880859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.99991607666016, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.81197357177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.47270965576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.60709381103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.17072296142578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.38512420654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.93517303466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.55194854736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.77615356445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.58386993408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.76179504394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2864761352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.09171295166016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.72856903076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.98074340820312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.33517456054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.7484245300293, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.12556457519531, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.23747253417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.39273071289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.72595977783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.32250213623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4357.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.15597915649414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.25180053710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.12890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.49644470214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.51515197753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.1060333251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8914794921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.21949768066406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8043670654297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.70582580566406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.92039489746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4517822265625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8128662109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.96652221679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.2266616821289, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.4954833984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.26640319824219, \"water_flow\": 129.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.84298706054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.91903686523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.29871368408203, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.34578704833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.60343933105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.9677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.46284484863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.77910614013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.9616928100586, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.91650390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.38164520263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.21782684326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.81465911865234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.60353088378906, \"water_flow\": 360.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.6543960571289, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.53496551513672, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.79573059082031, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.35029602050781, \"water_flow\": 103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.51879119873047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.85986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.13539123535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.46110534667969, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6581039428711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.44770812988281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.0484848022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.76378631591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.20153045654297, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.13931274414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.38532257080078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.995849609375, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.08199310302734, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.08650207519531, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.324462890625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.97431182861328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.51983642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.13754272460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.21112823486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.73206329345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.24282836914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.17322540283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.585205078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.35499572753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.3624725341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.6979522705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.77297973632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.61497497558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.19276428222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.81201171875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.63955688476562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.20660400390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.58790588378906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.99644470214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.41732788085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0880889892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.7971649169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.82015991210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.95059204101562, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.4521484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.14048767089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.55032348632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.1053009033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.81517028808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.86129760742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.65074157714844, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.13851928710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.13169860839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.36289978027344, \"water_flow\": 196.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.43116760253906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.2779998779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.61923217773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.59300231933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.79086303710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.66487121582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.70996856689453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.97942352294922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.487693786621094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.79946517944336, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.83321762084961, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.86232376098633, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.635324478149414, \"water_flow\": 1207.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.19207000732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.905574798583984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.70275115966797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.70956802368164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.53939819335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.60539245605469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.05785369873047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.61848449707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.17405700683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.07868194580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.53705596923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.54731750488281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.32726287841797, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.55880737304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.77687072753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.09891510009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.72406768798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.83143615722656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.43605041503906, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.37860870361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4294204711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.45893096923828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.63441467285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.30172729492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.6245346069336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.33657836914062, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.86083984375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.83598327636719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.1911392211914, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.37626647949219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.54339599609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9994354248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.38790893554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.6769561767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.84005737304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.27020263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.61386108398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.9445037841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.8159637451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1357421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.92062377929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.42276000976562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.99449920654297, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.47501373291016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.27696990966797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.04380798339844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.80697631835938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.59442138671875, \"water_flow\": 210.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.78150939941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.03157043457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.4731674194336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.31732940673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.53633117675781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.50362396240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.86701202392578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.76231384277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.16744995117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.45091247558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.59542083740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.06621551513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.85755157470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.43022155761719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.83731079101562, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.38848876953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.10359954833984, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.99620819091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.8130874633789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.28291320800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.86969757080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.92904663085938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.06224822998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.8048324584961, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.51457977294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.42516326904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.55694580078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.54747009277344, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.76860046386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.96742248535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.62001037597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.34130096435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.4001235961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.33430480957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.19751739501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.22370910644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.3511962890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.5211410522461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.83521270751953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.40145111083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.47303009033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.2159652709961, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.26045989990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.95736694335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.66101837158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.41422653198242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4342.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.069461822509766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.2160415649414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.43270874023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.93222045898438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6292724609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6807861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.06692504882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.652587890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.57957458496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.14060974121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.21080017089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.92662048339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.47271728515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.23336791992188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.69105529785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.70974731445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.65556335449219, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.95677185058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.11206817626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.35346221923828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.61727142333984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.4302749633789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.34738159179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.74354553222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.82262420654297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.76201629638672, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54444122314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.42972564697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.62638854980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.51950073242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.02674865722656, \"water_flow\": 238.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.73054504394531, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.85433959960938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.60124206542969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.627685546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.41397094726562, \"water_flow\": 100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.95939636230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.70112609863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.38871765136719, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.17160034179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.84559631347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.21633911132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.96219635009766, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.90235900878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.1367645263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.77479553222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1891098022461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.01349639892578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.37825012207031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.24830627441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.13909912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8113555908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.20445251464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.36717987060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.42440032958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.19001007080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9962158203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.63046264648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.64602661132812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3489227294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.15478515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.9823760986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.81478881835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.8194580078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.97779846191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.04937744140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1901092529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.89605712890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9296112060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.70790100097656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.26181030273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.91659545898438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.4883575439453, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.0787353515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.75201416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.5244598388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.82212829589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.45281982421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.35986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6461181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9430694580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.66909790039062, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.03025817871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.98419189453125, \"water_flow\": 206.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4005889892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.12106323242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.09693908691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.09461975097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.82196807861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.6048469543457, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.52015686035156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.05834197998047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.6411247253418, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.799774169921875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.85540008544922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.896331787109375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.901290893554688, \"water_flow\": 1212.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.746768951416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.51751708984375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.268531799316406, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.729347229003906, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.267051696777344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.75045013427734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.75684356689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.79560089111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.4877700805664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.86734771728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.38980865478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.14813995361328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.86653900146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.12797546386719, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.47073364257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.56053161621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.01788330078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.9192886352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.9155502319336, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.5508041381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03992462158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.86701202392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.99283599853516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.69800567626953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.70169830322266, \"water_flow\": 205.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.25776672363281, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.45895385742188, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.31610870361328, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6344985961914, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.38587188720703, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.88931274414062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.2928466796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.23231506347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.14593505859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.28219604492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.97535705566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.97662353515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3185577392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.8836212158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.06488037109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.26980590820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.32426452636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.76417541503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.10205078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.80342864990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.68136596679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.70890045166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.28994750976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.57621765136719, \"water_flow\": 212.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.36566925048828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.408935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.77304077148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.68692779541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.97389221191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.0677719116211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.05677032470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.26973724365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.19666290283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.13103485107422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.65840911865234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.57432556152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.24381256103516, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.79508972167969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.4738998413086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.88510131835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.71398162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.67350006103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.28386688232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.1646499633789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.2740249633789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.5951919555664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6751480102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.36387634277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.87982940673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.50370788574219, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.48094940185547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.35093688964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.59213256835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.33235168457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.69043731689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.93286895751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.9732437133789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.05925750732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.30064392089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.15486145019531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.6655044555664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.25499725341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.63973236083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.97965240478516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.89903259277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.37924194335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.97328186035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.77764129638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.63374710083008, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4324.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05039978027344, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.3477783203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.95193481445312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3347930908203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.23406982421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.39344787597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.32907104492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.43678283691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.5480499267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.21881103515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.16087341308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.64031982421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.84593200683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.00997924804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1064910888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.00042724609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.953369140625, \"water_flow\": 123.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.7403793334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.02246856689453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2057876586914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.17579650878906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.55047607421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.1076431274414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.89754486083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.07745361328125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.73146057128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.7424545288086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.78072357177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.5859603881836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.97197723388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.70317077636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.1745834350586, \"water_flow\": 234.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.0960693359375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.06009674072266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.47869110107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.07140350341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4210205078125, \"water_flow\": 99.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.31041717529297, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.14889526367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1016082763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.37644958496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7799835205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.39454650878906, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.78759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.253173828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6806640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.60697937011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.25659942626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.68717956542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.12874603271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.83512878417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.44381713867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.36515045166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.4020767211914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9996566772461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.15604400634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9440460205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.98658752441406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.54051208496094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.72442626953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.73231506347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.73545837402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.81080627441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.66522216796875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1175994873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.28875732421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.3643341064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1856231689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.63992309570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.99476623535156, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.00621032714844, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1416473388672, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.55361938476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.7903289794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.66416931152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7206573486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.70501708984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.90396118164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.5154266357422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5957794189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.56231689453125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.05523681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1436767578125, \"water_flow\": 234.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.07225036621094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.98948669433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.8166961669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.72499084472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.72057342529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.60558319091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.138275146484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.92523956298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.88969421386719, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.0078010559082, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.373600006103516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.82341384887695, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.787221908569336, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.12807846069336, \"water_flow\": 1221.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.851430892944336, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.84505844116211, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.364891052246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.00783920288086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.70858001708984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.96654510498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.04779815673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.68185424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.83077239990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.39037322998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.45327758789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.19454193115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.4634780883789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.34712982177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.98391723632812, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.30559539794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.13357543945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.86748504638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.66075897216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.35569763183594, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8567886352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.75593566894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.74603271484375, \"water_flow\": 223.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.99332427978516, \"water_flow\": 210.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.88013458251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.60346221923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.81431579589844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.73063659667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.5086898803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.65946960449219, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.64370727539062, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.31057739257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4735565185547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.50132751464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.12168884277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.28701782226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.61361694335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7313995361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.34878540039062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6777801513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.82328796386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.71097564697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.40906524658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2708740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.77172088623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.8457260131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.64401245117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.45316314697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.83576202392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.74188995361328, \"water_flow\": 213.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.4794921875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.56266784667969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.53673553466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.21556091308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.61717224121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.66487884521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.62753295898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.0892105102539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.89470672607422, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.37448120117188, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.94835662841797, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.77842712402344, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.16720581054688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.15414428710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.81009674072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.7423095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.04964447021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.60484313964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.70655059814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.46449279785156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.90594482421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.65006256103516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.65048217773438, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.79771423339844, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.5735092163086, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.8851318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.60490417480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.9765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95917510986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.21113586425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.30267333984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.4753189086914, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.35150146484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.86398315429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.92913818359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.72374725341797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.12752532958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.2689437866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.7681655883789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.9949951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.626708984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.41575622558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.70199584960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.80314636230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4310.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0625114440918, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.715538024902344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.81741333007812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.66676330566406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.7762908935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.27272033691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.9605255126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.5872039794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.3021697998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.82763671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.3856201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.04702758789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0374755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7171630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.79226684570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.65631103515625, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.00105285644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.5657730102539, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.6633529663086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.02286529541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.93814086914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.41478729248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.75996398925781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.46147918701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.38628387451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.5579605102539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.65003204345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.35858154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.86412048339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.92807006835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.9885482788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.14654541015625, \"water_flow\": 229.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.0916976928711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.80567932128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.32093811035156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.37893676757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.00614166259766, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.96945190429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.94419860839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.93922424316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.88648986816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.5102081298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.85362243652344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.92893981933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.57579040527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0702667236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.84912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.14224243164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.84949493408203, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.89588165283203, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.28129577636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.13687133789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.00452423095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.30030059814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.1184310913086, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.59922790527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.46475982666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.62925720214844, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.0528335571289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.41311645507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.56597900390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2447967529297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.88304138183594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.50466918945312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.98558044433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.2257537841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.2259521484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.37789916992188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.87060546875, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.19325256347656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6272735595703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9015350341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7022705078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.10292053222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.79608154296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.87420654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.7361297607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.67713928222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.82315063476562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.27447509765625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3467254638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.94842529296875, \"water_flow\": 242.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.43890380859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.09298706054688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.92372131347656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.76296997070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.24293518066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.99250030517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.44356155395508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.30032730102539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.666378021240234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.374595642089844, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.32809829711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.34457778930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.17045593261719, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.49037551879883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.5970458984375, \"water_flow\": 1242.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.765043258666992, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.07624816894531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.17658996582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.70681381225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.37431335449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.64303588867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.98420715332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.32510375976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.06692504882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.98621368408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.27649688720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.06494140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.24110412597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.2020034790039, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.03074645996094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.04420471191406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.94651794433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.87413787841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.92427825927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.35456848144531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.713623046875, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.81192779541016, \"water_flow\": 227.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.85367584228516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.8338394165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.85125732421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.94435119628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.6607437133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.57599639892578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.03807067871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.15318298339844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.28407287597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.87864685058594, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.246337890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2834930419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.53733825683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.49118041992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1947479248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.48277282714844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.07675170898438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.91456604003906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.95401000976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.3758773803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.73168182373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.07325744628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.67265319824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.02406311035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.82781219482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.27125549316406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.77066040039062, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.48542022705078, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.30186462402344, \"water_flow\": 248.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.08457946777344, \"water_flow\": 259.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.298828125, \"water_flow\": 276.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.50519561767578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.75346374511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.00098419189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.63278198242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.37967681884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.68511199951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.27362823486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.68791961669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.16980743408203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.36370086669922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.05253601074219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.51388549804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.01506805419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.07258605957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.66651153564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.66783142089844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.51697540283203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.12328338623047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.98895263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.60330963134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.11930084228516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.00785064697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.86689758300781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.33007049560547, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.95079040527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.93683624267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.18600463867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.68437957763672, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.9915771484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.90926361083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.50138854980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.53413391113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.89997863769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.98430633544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.23535919189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.32097244262695, \"water_flow\": 4286.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.82786560058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.95504760742188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.2123565673828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.02969360351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.21914672851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.75592041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.62344360351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.9664306640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.40989685058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.85791015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.0186309814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.80162048339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7469940185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.92388153076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.96717834472656, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.29823303222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.73456573486328, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.32684326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.44068908691406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.5202407836914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.42855834960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.2284164428711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.41622161865234, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.3432846069336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.14728546142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.72792053222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.58077239990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.98672485351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.17807006835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.06574249267578, \"water_flow\": 219.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.75569152832031, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.80123138427734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29878997802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.65640258789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.67718505859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.8285140991211, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.84615325927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.33245849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.17416381835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.9575653076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.62840270996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.78524780273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8321533203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.48101806640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.10491943359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.40208435058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.01881408691406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.68720245361328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.26561737060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.56362915039062, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.7277603149414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.65658569335938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.23070526123047, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6607666015625, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.70301818847656, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.29009246826172, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.17236328125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.10137939453125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.13216400146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1331024169922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.35174560546875, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.439453125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0312042236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.26449584960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.253173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.30833435058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.39785766601562, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.28701782226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.45254516601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.67611694335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.29676818847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7598114013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.2528076171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.464111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1396484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.1291961669922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.91221618652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9022979736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.49893188476562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.36082458496094, \"water_flow\": 257.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.22366333007812, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.8462677001953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.9542236328125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.60643005371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.5261993408203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.43673706054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.3904800415039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.07062530517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.80815887451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.23712921142578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.80536651611328, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.750816345214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.74397277832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.005794525146484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.68753433227539, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.10736656188965, \"water_flow\": 1268.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.732358932495117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.36236572265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.47184753417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.06257629394531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.53211975097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.9908676147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.16172790527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.21681213378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.37730407714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.9369125366211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.01569366455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.35860443115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.66127014160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.01468658447266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.11590576171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.06534576416016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.85977935791016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.48485565185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.32046508789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.7694320678711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.5915756225586, \"water_flow\": 279.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.06889343261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.62313079833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.95035552978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.72628021240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.39488220214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.35503387451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.78948974609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.96212768554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.81208801269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.93998718261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.83631896972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.15729522705078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.07363891601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.59434509277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.79139709472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.90371704101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.61187744140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4540557861328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.51714324951172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.06658935546875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.4489974975586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.50434875488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.34789276123047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.72348022460938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.004150390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.07244110107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.01746368408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.03456115722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.70858001708984, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.00594329833984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.31237030029297, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.7958755493164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.83143615722656, \"water_flow\": 282.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.4647216796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.74798583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.96990966796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.47035217285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.55105590820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.31513977050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.92434692382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.5284194946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.87252807617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.27386474609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.68690490722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.91735076904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.96971893310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.82723999023438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.5204086303711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.89713287353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.70992279052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.5901870727539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.09161376953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.32755279541016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.04986572265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.21063995361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.75650024414062, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.27617645263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.25418090820312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.297607421875, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.198909759521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.303466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.68547439575195, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.00746154785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.66043090820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.22004318237305, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05380630493164, \"water_flow\": 4259.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.0145263671875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.59215545654297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.0942611694336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.67764282226562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1772918701172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.10911560058594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.92198181152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.56076049804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7634735107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7831573486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3053741455078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.67059326171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.33722686767578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.1650619506836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.91883850097656, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.31124877929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.7221450805664, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.60051727294922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.37747955322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.67948913574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.84361267089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.59117126464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.96428680419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.83789825439453, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.86857604980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.46659851074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.30955505371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.4840316772461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.37178039550781, \"water_flow\": 216.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.52042388916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.89047241210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.86591339111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.52169799804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.54449462890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.80902099609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4929962158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.20848846435547, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.82814025878906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.94163513183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.1316375732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.52352905273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.83985900878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6469268798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.05783081054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5482177734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9840087890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1199722290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.88906860351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.74414825439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.2813949584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.84938049316406, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.50125885009766, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.70591735839844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.21993255615234, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.39180755615234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.9948959350586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.40608215332031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.44864654541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.63932037353516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.15261840820312, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0421905517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4518585205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.80979919433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.38623046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.27294921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.253173828125, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.50543212890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4260711669922, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.78280639648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.64031982421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.12802124023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.3731689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.90513610839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.16981506347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.97462463378906, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.24444580078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.46363830566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.75888061523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.96517944335938, \"water_flow\": 272.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.31068420410156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.52609252929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.55596923828125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.9922332763672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.30319213867188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.768310546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6506950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.43972778320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.88603973388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.06641387939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.779808044433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.329227447509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.475387573242188, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.62902069091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.12403869628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.58156204223633, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.12832260131836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.239282608032227, \"water_flow\": 1283.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.535520553588867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.774131774902344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.122589111328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.93601989746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.81135559082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.141212463378906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.3388671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.23211669921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.26119232177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.82705688476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.70259857177734, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.97525024414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.07746887207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.22335052490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.0064926147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.14346313476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.2909927368164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.71680450439453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.45284271240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.9912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.96389770507812, \"water_flow\": 283.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.488525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.6969223022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.7388687133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.38683319091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.56099700927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.88103485107422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.39351654052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.79226684570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.80198669433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.509033203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.771240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.12628173828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.35746765136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.62261962890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.17567443847656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.16212463378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5123291015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.61854553222656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.59481811523438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.81290435791016, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.88047790527344, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.31785583496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.56600189208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.67108154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.6707534790039, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.31033325195312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.24042510986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.37291717529297, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.47415161132812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.51210021972656, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.37041473388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.38182067871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.57589721679688, \"water_flow\": 290.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.79609680175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.17518615722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.40682983398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.45738983154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.7330093383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.3358383178711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.2809066772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.04393768310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.04420471191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.41459655761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.70406341552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.49987030029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.48086547851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 91.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.65001678466797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.77963256835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.95276641845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.0468521118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.6915512084961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.2695083618164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.79029846191406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.69146728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.68122863769531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.92235565185547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.35493469238281, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.68927764892578, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.254600524902344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05248260498047, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07609176635742, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.051910400390625, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.2440071105957, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.85516357421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.064064025878906, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1954.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2294.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.33806610107422, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.17894744873047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.18938446044922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.39225769042969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.52029418945312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9246368408203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.59097290039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4155731201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9492950439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.09474182128906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.73583984375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.68428039550781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.81746673583984, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.70862579345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.89210510253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.37049102783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.97891235351562, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.23233032226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.96385192871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.72483825683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4395294189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.29241943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.05087280273438, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.48123168945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0885238647461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.20130157470703, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.14659118652344, \"water_flow\": 209.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.16549682617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.75636291503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.22802734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0155487060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.9308319091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.32493591308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6935272216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.26974487304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.88677978515625, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.62319946289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.25137329101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.2901153564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1712646484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.04244995117188, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.51809692382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0548095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.87869262695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.57610321044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.02810668945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.93765258789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.66441345214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.89582061767578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.33617401123047, \"water_flow\": 99.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9228286743164, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.76770782470703, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.60750579833984, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.77977752685547, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.19434356689453, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.15160369873047, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.82701110839844, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.84033966064453, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3662872314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.66787719726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.11056518554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.7799530029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.50672912597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3983917236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.87872314453125, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.7510223388672, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.4556884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.76849365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.58746337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.3853759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.80899047851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.44309997558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.51219177246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0070343017578, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.10220336914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.793212890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.65829467773438, \"water_flow\": 276.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3903045654297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.61398315429688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.2118682861328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.95631408691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.365234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.09860229492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.69183349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.77447509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.56311798095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.924530029296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.848289489746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.413780212402344, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.570850372314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.41374206542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.69664001464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.053707122802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.0401725769043, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.37458610534668, \"water_flow\": 1290.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.431480407714844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.294057846069336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.62297058105469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.1005744934082, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.672149658203125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.357608795166016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.494285583496094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.52308654785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.33609008789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.63626861572266, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.7109375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.76170349121094, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.87860107421875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.84772491455078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.90552520751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.6575698852539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.3216781616211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.19136810302734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.85384368896484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.72306060791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.38092803955078, \"water_flow\": 285.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.87581634521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.06562805175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.45021057128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.67713165283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.75228118896484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.76420593261719, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.94078826904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9778289794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.32720184326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6355438232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.25421142578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.53401947021484, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.56141662597656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.70894622802734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5760040283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8721160888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.28683471679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.1211929321289, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.98631286621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.37461853027344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.5026626586914, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.34525299072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.11371612548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.17581939697266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.73956298828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.38967895507812, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.48383331298828, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.15758514404297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.05499267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.91670227050781, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.69969177246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.53279113769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.34642028808594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.2112808227539, \"water_flow\": 300.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.30939483642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.27784729003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.06304168701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.00120544433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.07318115234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.80978393554688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.00806427001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.96148681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.55496978759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.2083511352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.00883483886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.31666564941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.65814971923828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.47882080078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.37743377685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.7809829711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.49078369140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.19449615478516, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.3483657836914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.77452850341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.32479095458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.74170684814453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.64750671386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.172054290771484, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.41145706176758, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 147.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1786.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2293.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.062896728515625, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.42425537109375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.56181335449219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.68778228759766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.85541534423828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.17517852783203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.377685546875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.56495666503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.41693115234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.20114135742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.05567932128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.10566711425781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.19007873535156, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.0140151977539, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.53395080566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.04996490478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.0479965209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.85844421386719, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2011260986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.7773895263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.99044799804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6013946533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.28497314453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.31835174560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36919403076172, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.55492401123047, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.40088653564453, \"water_flow\": 152.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.66949462890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.803955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.59036254882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.79866790771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.77325439453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.77932739257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.58660888671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9203643798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.13815307617188, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.93090057373047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.14120483398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.7930450439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.1381072998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.07888793945312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.61453247070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.49879455566406, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.03921508789062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1867904663086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.79444122314453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.6952133178711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.58506774902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.25822448730469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.87625122070312, \"water_flow\": 382.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.4653091430664, \"water_flow\": 278.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6552505493164, \"water_flow\": 275.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.15420532226562, \"water_flow\": 273.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.13230895996094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.7670669555664, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.49749755859375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.10059356689453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.72374725341797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.62641906738281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.53019714355469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.04417419433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.3307342529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.88002014160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.37042236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8063201904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.2688751220703, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.00411987304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.05609130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.8506622314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.31573486328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6711883544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.43853759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.27894592285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.76318359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.3355712890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.23912048339844, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.29893493652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6584014892578, \"water_flow\": 290.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.13101196289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.24049377441406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.34219360351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.55593872070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.51275634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 166.95266723632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 166.4881591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.5677490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.681976318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.434906005859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.04674530029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.103256225585938, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.29197120666504, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.939430236816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.781883239746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.42665100097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.4018669128418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.625402450561523, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.68609046936035, \"water_flow\": 1299.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.58656883239746, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.46017837524414, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.632259368896484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.089149475097656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.5946044921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.42637252807617, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.19835662841797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.04100036621094, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.29944610595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.04573059082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.08758544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.30089569091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.4985580444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.39759826660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.59166717529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.75520324707031, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.50543212890625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.2652816772461, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.64840698242188, \"water_flow\": 286.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.87907409667969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.49671173095703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.86616516113281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.8454360961914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.59744262695312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.70994567871094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.92920684814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.02983856201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.34099578857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.89990997314453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.21192169189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.71292114257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.39750671386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.20960998535156, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.32335662841797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.82565307617188, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.66417694091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.18377685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.09172058105469, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.51041412353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.3876953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.35023498535156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.18096923828125, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.00999450683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.62033081054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.69657897949219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.75605773925781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.61072540283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.2411880493164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.4386978149414, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.02143859863281, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.46199798583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.10367584228516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.13845825195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.89020538330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.92530822753906, \"water_flow\": 305.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.94351196289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.14523315429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.47283935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.09161376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.64444732666016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.81050109863281, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.2481689453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.57015991210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.60624694824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.44540405273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.92573547363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.66816711425781, \"water_flow\": 178.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.08297729492188, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.60931396484375, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.82453155517578, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.65001678466797, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6500015258789, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.8022689819336, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.46977233886719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.4871826171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.00341033935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.84156036376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.8028335571289, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.3092041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.37723541259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.7333755493164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.82638549804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.7476806640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.78897094726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.05221176147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1781.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2292.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.171974182128906, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.63056945800781, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.74884033203125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.11136627197266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8412094116211, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.08145141601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.40240478515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6035919189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.12201690673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.31259155273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.65614318847656, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.7593994140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.37085723876953, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.01311492919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.43474578857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.81897735595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5246810913086, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.30827331542969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.60816955566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1142578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.55757904052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.09721374511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36320495605469, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.27362823486328, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.58390045166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.03143310546875, \"water_flow\": 149.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.93193817138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.30016326904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.31033325195312, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.02499389648438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.42664337158203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0409698486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.4931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8789825439453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.95159912109375, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.29788208007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.71005249023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.62310791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.61480712890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.93032836914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5220947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6394805908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.35931396484375, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.75174713134766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29627227783203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.19474029541016, \"water_flow\": 410.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.78729248046875, \"water_flow\": 400.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.01058197021484, \"water_flow\": 387.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.91480255126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.17400360107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.09339904785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.12618255615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.09640502929688, \"water_flow\": 263.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.013427734375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.34759521484375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.9879379272461, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.46946716308594, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.58421325683594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.31172180175781, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.51842498779297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5704803466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.34356689453125, \"water_flow\": 99.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1411590576172, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7872772216797, \"water_flow\": 92.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.97789001464844, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2074432373047, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.03684997558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.18222045898438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.88011169433594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.71136474609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.53099060058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9955596923828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.37246704101562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0177764892578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.64920043945312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.57345581054688, \"water_flow\": 316.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.19908142089844, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.08876037597656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.062255859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.49810791015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.7344512939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.97796630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.7559051513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.53500366210938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.6923828125, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.1335334777832, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.259342193603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.85509490966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.117473602294922, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.15106773376465, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.862377166748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.803993225097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.751319885253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.19437789916992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.604196548461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.303680419921875, \"water_flow\": 1316.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.33121109008789, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.26836395263672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.580368041992188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.2170295715332, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.53896713256836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.95759201049805, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.489952087402344, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.76776885986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.68574523925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.1966781616211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.81085205078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.76289367675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.93885040283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.63800811767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.74400329589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.34581756591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.28733825683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.38031768798828, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.15809631347656, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.96598815917969, \"water_flow\": 293.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.07856750488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.0657958984375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.25486755371094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.69209289550781, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.92448425292969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.90686798095703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.65391540527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.1484603881836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.16064453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.5857162475586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.01777648925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.4409408569336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.54873657226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.92833709716797, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.3051986694336, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.61990356445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.42166900634766, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.20169830322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.47256469726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.94425201416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.19479370117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.02104187011719, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8665771484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.31758117675781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.7159194946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.99475860595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.36275482177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.3614730834961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.73258972167969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.07196044921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.51048278808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.39441680908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.6629409790039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.94174194335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.00880432128906, \"water_flow\": 309.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.41038513183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.00728607177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.05111694335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.07018280029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.43548583984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.8819580078125, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.36387634277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.38899993896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.31917572021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.42057037353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.78660583496094, \"water_flow\": 183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.01923370361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.3967514038086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.32830047607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.27648162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.01126861572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.67549896240234, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.87447357177734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.42709350585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.78273010253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.86888122558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.11173248291016, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.4489517211914, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.72834014892578, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.22991180419922, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.70437622070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.63404083251953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.62020874023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.4476318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.06012725830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1772.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.57405090332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.42954635620117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.41612243652344, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.13390350341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.21068572998047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05352783203125, \"water_flow\": 2291.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.11671447753906, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.08177947998047, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.62615203857422, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.08493041992188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9007568359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.44833374023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.07321166992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.78226470947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.23235321044922, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.41325378417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.23028564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.08334350585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.93824768066406, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6506805419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.10470581054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.37088012695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.4794921875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.61009216308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.38992309570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.89877319335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.52264404296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.24478149414062, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.65071868896484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.17644500732422, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.83435821533203, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.50080871582031, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.7260971069336, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.04609680175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.3187255859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.92251586914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.87831115722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2462158203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.04530334472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.62067413330078, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.37709045410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.87579345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.3369903564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.25164794921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.75599670410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.09019470214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9228057861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1104507446289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.1039047241211, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.88806915283203, \"water_flow\": 424.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.93629455566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2241439819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.89543151855469, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.60639953613281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.33014678955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.47023010253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.42852783203125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.26141357421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.26007843017578, \"water_flow\": 245.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.74214935302734, \"water_flow\": 110.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.45758819580078, \"water_flow\": 109.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.95622253417969, \"water_flow\": 108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.42864990234375, \"water_flow\": 107.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.80317687988281, \"water_flow\": 106.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.2608871459961, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.39276123046875, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.00997924804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.05056762695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.7598419189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9049072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6224822998047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.932373046875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.51409912109375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.36941528320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.68624877929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.05996704101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.83450317382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4477996826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7405548095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.38108825683594, \"water_flow\": 328.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.64971923828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.85797119140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.28233337402344, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.0144500732422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.13658142089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.78489685058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.03741455078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.63514709472656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.56207275390625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.42807006835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.05646896362305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.21858215332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.234121322631836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.376922607421875, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.97093391418457, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.258371353149414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.472122192382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.4501953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.124313354492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.762073516845703, \"water_flow\": 1319.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.630699157714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.654260635375977, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.377796173095703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.14242172241211, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.809425354003906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.399051666259766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.30070877075195, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.733062744140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.75308609008789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.37578582763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.60257720947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.86519622802734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.570556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.4706802368164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.12567138671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.08749389648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.6537857055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.15660858154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.17778778076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.89090728759766, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.7109603881836, \"water_flow\": 301.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.7684555053711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.69608306884766, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.62875366210938, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.30245208740234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.82476806640625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.79678344726562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.50883483886719, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.77874755859375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1857681274414, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.25714111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.31597137451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.62610626220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.52931213378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.7486801147461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.65338897705078, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.05542755126953, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.29623413085938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.0865478515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.33097076416016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.6509780883789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.61883544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2031478881836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4922103881836, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.95980072021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7625732421875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.23988342285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.45181274414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8386459350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.55480194091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.84629821777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.6261215209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.67802429199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.03842163085938, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.7992172241211, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.31674194335938, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.9545669555664, \"water_flow\": 333.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.05354309082031, \"water_flow\": 345.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.78621673583984, \"water_flow\": 348.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.05062103271484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.34122467041016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.04088592529297, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.64350891113281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.62627410888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.84136962890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.67032623291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.62638854980469, \"water_flow\": 189.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.0614242553711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.599609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.41030883789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.66719055175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.16195678710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.49588775634766, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.7790298461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.95933532714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.75154113769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.30851745605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.91251373291016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.0801773071289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.85429382324219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.96336364746094, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.5864486694336, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.09163665771484, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.40663146972656, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.14999008178711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.21975326538086, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1759.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.071285247802734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.70511245727539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.47014236450195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.93423843383789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.549827575683594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.43647766113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.18533706665039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08289337158203, \"water_flow\": 2290.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05912399291992, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.69223403930664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.2017822265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.73587036132812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.31754302978516, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.73898315429688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.38739013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.45783233642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.62311553955078, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.15599060058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.39007568359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.78140258789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.15182495117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.01123046875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.49090576171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.90806579589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8528594970703, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.75326538085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.73300170898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.00808715820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.94914245605469, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.36614990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.9859390258789, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.7497787475586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.18328094482422, \"water_flow\": 92.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8760986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.94426727294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.17889404296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.86984252929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2225341796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.53176879882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.30747985839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.18092346191406, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.6959228515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.47242736816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.25433349609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.78121948242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.17486572265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5501708984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.22948455810547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.69025421142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.05525207519531, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.3204345703125, \"water_flow\": 430.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.00704193115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.21943664550781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.77458953857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.92909240722656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.07719421386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.4617919921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.82288360595703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.05996704101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.5807876586914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.41300964355469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9997787475586, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.69743347167969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.80876922607422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.17056274414062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.18447875976562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.78230285644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8408203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.93765258789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5821533203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.50047302246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9560546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4960174560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0734405517578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.18019104003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.0637664794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.4990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.10301208496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.8897247314453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.85809326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.34979248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.23867797851562, \"water_flow\": 334.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.5341033935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.4520721435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.64955139160156, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.37039184570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.0000457763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.9796905517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.92616271972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.06442260742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.881591796875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 169.91928100585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.060216903686523, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.963420867919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.74209976196289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.591703414916992, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.103750228881836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.562219619750977, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.31700325012207, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.144773483276367, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.868057250976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.88050651550293, \"water_flow\": 1323.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.444650650024414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.83413314819336, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.792980194091797, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.742372512817383, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.112586975097656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.22892761230469, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.70232391357422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.125057220458984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.44232177734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.92754364013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.5618896484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.60887145996094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.4869613647461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.70903778076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.72332763671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.68605041503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.45184326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.0218276977539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.5311508178711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.66728210449219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.48320007324219, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.83964538574219, \"water_flow\": 302.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.76151275634766, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.44813537597656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.04083251953125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.72311401367188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.95758819580078, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.30729675292969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.25212097167969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.5110092163086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.53572082519531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.58720397949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.1867904663086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.48052215576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.60047149658203, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.03215026855469, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.58573150634766, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.23191833496094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.01299285888672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.12812042236328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.5877685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95067596435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.94255828857422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.24735260009766, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.78729248046875, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.32052612304688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.11004638671875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.41394805908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.98185729980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.42193603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.54679107666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.90198516845703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.85844421386719, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.2026138305664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.6736068725586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.08059692382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.1055908203125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.60051727294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.89701080322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.06102752685547, \"water_flow\": 349.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.04425048828125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.55213165283203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.78553009033203, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.01182556152344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.34774780273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.78787231445312, \"water_flow\": 192.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.83143615722656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.51893615722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.89459228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.59934997558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.30169677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.14569854736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.09056091308594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.24018096923828, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.52935791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.70428466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.92967224121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.95222473144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.66648864746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.93538665771484, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.8626708984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.6642837524414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.22513580322266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.91478729248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.9653434753418, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05001449584961, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1745.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07091522216797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.02781677246094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.30695343017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.03141403198242, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.57286071777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.33771514892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.54372024536133, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.45828628540039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2284.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.62215805053711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.33909606933594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.56647491455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.66268157958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.13158416748047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.8863296508789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.51907348632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.39493560791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.66938781738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.38898468017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.38922119140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.1098175048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.93484497070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6001739501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.7998809814453, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.38812255859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.9498748779297, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8554229736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8203582763672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.49710083007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.60051727294922, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.33838653564453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3034439086914, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.40153503417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.14250183105469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.6008529663086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.79266357421875, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.4180908203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.68563079833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.12356567382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.57891082763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.01385498046875, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.70751953125, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.24760437011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.39443969726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.03120422363281, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2372589111328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.341064453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.71633911132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.35885620117188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.15499114990234, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.01093292236328, \"water_flow\": 433.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.03394317626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.04944610595703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.00347900390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3654327392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.01025390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.45650482177734, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.98727416992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.92743682861328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.80491638183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.86920928955078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.53031921386719, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.53599548339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.3274154663086, \"water_flow\": 109.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.96490478515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.86483764648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.65704345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.04393768310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.07787322998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.24453735351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1405029296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.37957763671875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.64593505859375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.61862182617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4935760498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0881805419922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.52392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.36251831054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.77932739257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.30426025390625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.44708251953125, \"water_flow\": 341.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.74839782714844, \"water_flow\": 338.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.88658142089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.26649475097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.99026489257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.33798217773438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.61009216308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.23681640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.54139709472656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.369873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 169.31759643554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.7407684326172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 171.62606811523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.077707290649414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.87925148010254, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.9044132232666, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.101215362548828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.81085777282715, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.23284339904785, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.347963333129883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.169214248657227, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.128616333007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.07914924621582, \"water_flow\": 1352.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.329118728637695, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.09258460998535, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.34733009338379, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.3175048828125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.74866485595703, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.131736755371094, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.870079040527344, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.138362884521484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.083133697509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.67237091064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.02043533325195, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.15297317504883, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.81121063232422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.93421173095703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.23571014404297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.94257354736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.32556915283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.36530303955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.76419067382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.4120864868164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.54522705078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.06837463378906, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.8047866821289, \"water_flow\": 332.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.12644958496094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.4369888305664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.58479309082031, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.7802734375, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.83293914794922, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.10490417480469, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.5363540649414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.24398803710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.60284423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.42362213134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4234619140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.2225570678711, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.59089660644531, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9344711303711, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.18685150146484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.76274108886719, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.16228485107422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.43572998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.68436431884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.32281494140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7611083984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.83277893066406, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.25618743896484, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.45713806152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.0354232788086, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.80543518066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.85748291015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.17455291748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.27244567871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.99640655517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.36216735839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.76174926757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.74515533447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.96886444091797, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.78507232666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.82701873779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.40689086914062, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.73150634765625, \"water_flow\": 350.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.31707000732422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.16986083984375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.2143783569336, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.17204284667969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.47843170166016, \"water_flow\": 202.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.82533264160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.35651397705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.80672454833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.94083404541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.38922882080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.21604919433594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.5385513305664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.89385986328125, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.76095581054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.47948455810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.7249755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.21741485595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.69347381591797, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.88937377929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.81205749511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.91725158691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.58283996582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.15925598144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.1911735534668, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1729.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.53383255004883, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.25521087646484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.6759262084961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.22439575195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.46210479736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.7287368774414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.06468200683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.92277908325195, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.17234802246094, \"water_flow\": 2275.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.70673751831055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.58673095703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.21744537353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.83050537109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.72053527832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.8412857055664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.90406036376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.50245666503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.11476135253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.7355499267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.9523162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.63250732421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.22653198242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.1884307861328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.7422637939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.18276977539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.84690856933594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.63941955566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1304931640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.50646209716797, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.78102111816406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.79000091552734, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.90939331054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.76441192626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.29373168945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.28050231933594, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.66131591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.97853088378906, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9803466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.69117736816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.01239013671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43742370605469, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.77943420410156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7938461303711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.36988067626953, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.73419189453125, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8346405029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.91262817382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.89356994628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.51254272460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.91413879394531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.33465576171875, \"water_flow\": 460.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.8686752319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.9478759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.82418060302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.1339111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9620819091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6826629638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.58213806152344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8739776611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.25978088378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.16299438476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.3369369506836, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.45790100097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.82865142822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.46581268310547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.42443084716797, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.98754119873047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.68080139160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.89691925048828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.58736419677734, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.67388916015625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0189666748047, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8548583984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.60252380371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2463836669922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.20115661621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.49806213378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.0040740966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4318389892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.51235961914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.35240173339844, \"water_flow\": 351.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.56317138671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.41856384277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.38467407226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.80758666992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.0585174560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.553466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.3654327392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.8660888671875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.7947540283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.6920166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.17431640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.728759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 166.17367553710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.416759490966797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.187162399291992, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.852432250976562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.04230499267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.727066040039062, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.056358337402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.372751235961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.09699821472168, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.13644790649414, \"water_flow\": 1356.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.331356048583984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.51799201965332, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.56937026977539, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.83983039855957, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.68209457397461, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.914186477661133, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.22774887084961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.24161148071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.167266845703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.628570556640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.930450439453125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.353248596191406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.817955017089844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.54132080078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.147705078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.11614990234375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.4101791381836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.26795959472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.39089965820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.91545104980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.18220520019531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.30858612060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.19511413574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.10869598388672, \"water_flow\": 371.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.2869644165039, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.374755859375, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.62168884277344, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.40104675292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.8178939819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.30037689208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.36552429199219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.5197525024414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.14580535888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.1512222290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.3925552368164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.86981964111328, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.28767395019531, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.70425415039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.67182159423828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2286148071289, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.68626403808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.75623321533203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5091323852539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.72447204589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.23522186279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.28350830078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.18494415283203, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.96896362304688, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.27593994140625, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.87606811523438, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.86294555664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.59135437011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.18831634521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.6921615600586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.58777618408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.04000854492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.38309478759766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.625244140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.14299011230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.23391723632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.72303009033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.61091613769531, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.29961395263672, \"water_flow\": 351.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.8454818725586, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.75798797607422, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.32683563232422, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.96893310546875, \"water_flow\": 209.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.96710968017578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.44441986083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.49903106689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.5959701538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.68963623046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.43540954589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.93429565429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.75638580322266, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.42670440673828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.7400131225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.48709106445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.16978454589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.61077880859375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.27349090576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.48109436035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.97702026367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.1957778930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.70613098144531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.15462112426758, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1712.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06269454956055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.3482551574707, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.06015014648438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.9233169555664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.60765075683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.42266845703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.63313293457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.43614959716797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.07627868652344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.4145622253418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2269.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.21013259887695, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.76788330078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.99815368652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.39224243164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.46627807617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.11570739746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.59965515136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.5555648803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9590835571289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.82299041748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4508819580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.77508544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.80633544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0915069580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.93414306640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.31056213378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7296600341797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.14999389648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5399169921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.31610107421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.48472595214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.28921508789062, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.56598663330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.860107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5087890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.24390411376953, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.77352142333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.35773468017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.2737045288086, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.18606567382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.856689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.3001251220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.25501251220703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.21772766113281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.73322296142578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.15130615234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.3684310913086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.13356018066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.14642333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.61016845703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31524658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.46621704101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.63465881347656, \"water_flow\": 466.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9710693359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.18928527832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2821044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.16047668457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.74549102783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.21412658691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0829315185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.25570678710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.10777282714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7318572998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.7176284790039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.17340850830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.98334503173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.76914978027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.45206451416016, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.11393737792969, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.86913299560547, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.79161071777344, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.8808822631836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.60227966308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9524383544922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.30482482910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.03863525390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.33450317382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.6767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.73330688476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.3009796142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.20970153808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.83924865722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.8174591064453, \"water_flow\": 359.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.68406677246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.71810913085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.05575561523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.12767028808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.1259002685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.36170959472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.59324645996094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.79428100585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.967529296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.50289916992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.85162353515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.9151611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.31405639648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.308588981628418, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.138946533203125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.236740112304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.74964714050293, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.080402374267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.125459671020508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.69081687927246, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.805093765258789, \"water_flow\": 1366.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.56650161743164, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.144420623779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.554636001586914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.26784324645996, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.140674591064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.12899398803711, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.637292861938477, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.78179168701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.70598030090332, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.129899978637695, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.110313415527344, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.81714630126953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.812950134277344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.27107238769531, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.54581832885742, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.1474838256836, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.38995361328125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.71571350097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.45633697509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.05674743652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.86511993408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.41034698486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.4406967163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.92703247070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.49626922607422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.21785736083984, \"water_flow\": 393.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.36734771728516, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.55174255371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.56843566894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.345947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.04816436767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.14319610595703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.5330581665039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.5863265991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.8138656616211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.71807861328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.22848510742188, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.82415008544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.98269653320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.03421783447266, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.0923843383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.99646759033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.10529327392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.59890747070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.83563232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.98320770263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.42804718017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.8306884765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.40833282470703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.74851989746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.20414733886719, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.9859619140625, \"water_flow\": 82.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.40145111083984, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.8402099609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.74177551269531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.3782958984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.76325225830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.13199615478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.0783462524414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.8578109741211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.42338562011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.6386489868164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.99919891357422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.14523315429688, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.65658569335938, \"water_flow\": 352.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.60079193115234, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.93263244628906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.88445281982422, \"water_flow\": 240.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.94470977783203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.01859283447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.90959930419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.67163848876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.70538330078125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.91312408447266, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.57321166992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.95111083984375, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.61372375488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.8651123046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.30108642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.44670867919922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.64176177978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.04256439208984, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.58344268798828, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.14562225341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.92150115966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.831787109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.054725646972656, \"water_flow\": 1699.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.65983200073242, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.8082504272461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.2762222290039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.9205322265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.58732604980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.3489761352539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.3280258178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.0023193359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.58648681640625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.24922180175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2262.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07925796508789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.81503677368164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.91825103759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.40199279785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.41909790039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.84520721435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.02157592773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.5258560180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.51367950439453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.5528564453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.94194793701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.27156066894531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.3967056274414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.41607666015625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.86941528320312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.08473205566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.0132293701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.0614471435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.99002075195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.10049438476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.9523162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8483428955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.72593688964844, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4946746826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.85494995117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.07083129882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.8534164428711, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.91421508789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.17353820800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.07994842529297, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.86625671386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0575714111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.67501831054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.26588439941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.18545532226562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.80137634277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7776870727539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.32527923583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.81856536865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.81851959228516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.58292388916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2986831665039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.38461303710938, \"water_flow\": 470.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.4979019165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.97235870361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.33451843261719, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.74806213378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.2148208618164, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.25465393066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.5290069580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.64991760253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.37860107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7230224609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.81436157226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.45643615722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.49017333984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.42825317382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.7923355102539, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.4267578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.20006561279297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43273162841797, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.36256408691406, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.94705963134766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.20187377929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.40060424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.86422729492188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.19808959960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.26686096191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.29037475585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7513427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.620849609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7373504638672, \"water_flow\": 364.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.65757751464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.02488708496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.1773223876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.160400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.31639099121094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.24130249023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.4932098388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.62353515625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.27761840820312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.4624481201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.3643341064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.36097717285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.8928985595703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.581298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.064005851745605, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.289902687072754, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.434673309326172, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.095273971557617, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.54775619506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.165006637573242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.13810920715332, \"water_flow\": 1370.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.468856811523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.07266616821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.37628746032715, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.180566787719727, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.113853454589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.345409393310547, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.4560604095459, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.3919677734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.668018341064453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.749160766601562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.698482513427734, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.968820571899414, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.70625305175781, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.590049743652344, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.431671142578125, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.86153030395508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.93708801269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.72553253173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.29068756103516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.82140350341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.26543426513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.10693359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.15396118164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.62833404541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.24243927001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.70103454589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.07794189453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.31926727294922, \"water_flow\": 426.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.76799011230469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.5346450805664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.10824584960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.86263275146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.33175659179688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.27741241455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.21414947509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.9294204711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.64837646484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.7308349609375, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.40669250488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.23210144042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.2892837524414, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.99089050292969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.91370391845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.02127075195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.01385498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.11358642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.6415786743164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.20054626464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.71342468261719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.00575256347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.86075592041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.77277374267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.67121887207031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.6597900390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.2373275756836, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.6588134765625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.32522583007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.12968444824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.66635131835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.84056091308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.1929931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.05079650878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.78399658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.3985595703125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.20171356201172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.24449920654297, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.69230651855469, \"water_flow\": 353.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.03459167480469, \"water_flow\": 264.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.93535614013672, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.1669692993164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.76296997070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.06922149658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.34154510498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.61115264892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.89014434814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.17813873291016, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.64279174804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.32427978515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.84442901611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.2883071899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.39070129394531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.58492279052734, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.19457244873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.77139282226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.31183624267578, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.78057861328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.916099548339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05001449584961, \"water_flow\": 1691.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.86626052856445, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.80389404296875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.04528045654297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.64929962158203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.4980239868164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.09288787841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.50083923339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.2751693725586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.0570297241211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.90219116210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.00420379638672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2245.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.83687210083008, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.9089126586914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.06726837158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.70816802978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.537841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.44544982910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.98014831542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.57373046875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.90355682373047, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.46406555175781, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.80870056152344, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.04352569580078, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.4219207763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.72113037109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.77952575683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.03225708007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.6220703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.25172424316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.04969787597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.4775390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.1708526611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.98060607910156, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.73268127441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.49642944335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.44894409179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.76580810546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.75479125976562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.12920379638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.52300262451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.98220825195312, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.91903686523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.51478576660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.958740234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.7083282470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4598846435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.89956665039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.67041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6481170654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.1802978515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.85943603515625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.8445816040039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.91033935546875, \"water_flow\": 474.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.90824890136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.40726470947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.49673461914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.45781707763672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.808837890625, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5433349609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.87744140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5767059326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1278839111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.03643798828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.98080444335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.01661682128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.13888549804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5149688720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.31719970703125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.58518981933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.22296142578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.271240234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.82650756835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.94252014160156, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.75231170654297, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1868896484375, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8887481689453, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.17721557617188, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.77066040039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.81033325195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.54322814941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1383514404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.38026428222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.4163360595703, \"water_flow\": 369.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.93235778808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.80892944335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.38653564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.03982543945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.64207458496094, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1543426513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.349609375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.08485412597656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.56101989746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.17718505859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.73780822753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.82240295410156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.18284606933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.92323303222656, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.661893844604492, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.875151634216309, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.821394920349121, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.30760955810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.846851348876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.1190242767334, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.564594268798828, \"water_flow\": 1373.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.8741512298584, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.58340835571289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.86648941040039, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.131881713867188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.789152145385742, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.273969650268555, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.018970489501953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.732271194458008, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.958192825317383, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.543245315551758, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.7485408782959, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.81659698486328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.6276969909668, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.72796630859375, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.11005401611328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.22709655761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.96694946289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.13676452636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.69595336914062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.27166748046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.70003509521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.69447326660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.72975158691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.67311096191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.50275421142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.67810821533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.93749237060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.5770263671875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.40636444091797, \"water_flow\": 437.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.42054748535156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.11414337158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.28374481201172, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.0589599609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.86779022216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.0633544921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.5837631225586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.78282165527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.28116607666016, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.11421966552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.53702545166016, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.00851440429688, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.0164566040039, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.15082550048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.68779754638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.12904357910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.76453399658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.71862030029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.04350280761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.89997863769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.23848724365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.58573913574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.15656280517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.46514129638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.20401000976562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.99671936035156, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.54208374023438, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.93367767333984, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.21083068847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.9122314453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.12409210205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.929931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.10599517822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.56578063964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.44542694091797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.98975372314453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.70903778076172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.53266143798828, \"water_flow\": 627.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.7442626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.48197937011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.17994689941406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.69373321533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.66777038574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.3448715209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.8470687866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.59627532958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.52752685546875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.72003173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.73636627197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.68766021728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.63984680175781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.28705596923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.92237091064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.02977752685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.5016860961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.26740264892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.655731201171875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09467697143555, \"water_flow\": 1665.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.90892791748047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.28900146484375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.33271789550781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.82723999023438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.00595092773438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.11930084228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.6595687866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.41001892089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.15347290039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.5252914428711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.87785720825195, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2238.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.8204231262207, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.52117919921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.9708023071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.54088592529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.7841567993164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.470947265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.75332641601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.6257553100586, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.97959899902344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.35401153564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.97359466552734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5726776123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.30081176757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.58360290527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.96214294433594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.3411865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.24798583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.37353515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.909912109375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.45556640625, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.18734741210938, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.95433044433594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.268310546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.1298370361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.65545654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.92941284179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3245086669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.1048812866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.26558685302734, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.58612060546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.93836975097656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.46885681152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.8446044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.71688842773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.16159057617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.45343017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.59760284423828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.28453826904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.59381103515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.76687622070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.03555297851562, \"water_flow\": 483.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.39128112792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.62322235107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.04409790039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.5174789428711, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.7346420288086, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.23102569580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.80963134765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.00807189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.25704956054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.01608276367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.18955993652344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.97340393066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2335662841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.84568786621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.18313598632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.76918029785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.9171142578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.44415283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.54869079589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.72482299804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.41896057128906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.58192443847656, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.65451049804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.57077026367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5826873779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.21275329589844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.29360961914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.69532775878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.4934844970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.04290771484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.02093505859375, \"water_flow\": 374.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.29640197753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.40252685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.56224060058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.84088134765625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.78163146972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.71290588378906, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.1411895751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.09030151367188, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.3514404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6755828857422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.58201599121094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.00119018554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.77969360351562, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.3635711669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.059943199157715, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.511584281921387, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.669756889343262, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.527931213378906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.421239852905273, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.759918212890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.770426750183105, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.380097389221191, \"water_flow\": 1376.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.821264266967773, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.44176483154297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.597837448120117, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.158069610595703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.22747230529785, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.020458221435547, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.23429298400879, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.71207618713379, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.757413864135742, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.87578582763672, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.617950439453125, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.19789505004883, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.220855712890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.954376220703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.616477966308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.69241714477539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.26757049560547, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.99882888793945, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.69532775878906, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.96417999267578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.74349212646484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.6253662109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.3135757446289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.64344787597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.9104232788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.45214080810547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.9852066040039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.4853515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.35697174072266, \"water_flow\": 441.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.95130920410156, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.39139556884766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.00001525878906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.6993179321289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.22846984863281, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.64183044433594, \"water_flow\": 129.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.29447174072266, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.5922622680664, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.42341613769531, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.97698211669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.02643585205078, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.1138687133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.11116027832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.14834594726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.03288269042969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.64083862304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.32368469238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.79486846923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.37139892578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.86498260498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.38489532470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.63304138183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.57997131347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.20604705810547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.18792724609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.3675308227539, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.52435302734375, \"water_flow\": 107.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.32085418701172, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.11219787597656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.92447662353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.9209976196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.80078887939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.9559555053711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.8336181640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.01991271972656, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.4960708618164, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.7808837890625, \"water_flow\": 634.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.95726013183594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.4389877319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.35315704345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.08100891113281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.30716705322266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89561462402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.97691345214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.98284149169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.04861450195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.02814483642578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.29034423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.36019897460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.14289093017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.30247497558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.603515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.87947845458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.51629638671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.89253997802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.64569091796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1637.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.303260803222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.4495620727539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.22598266601562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.47371673583984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.97753143310547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.27875518798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.44664764404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.55249786376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.55254364013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.96746063232422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.67584991455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.443023681640625, \"water_flow\": 1939.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 294.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.185672760009766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.50890350341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.22107696533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.4606704711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.61701202392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.84864044189453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.33675384521484, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.0714111328125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.04425048828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.79405212402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.03314208984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.90228271484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.82498168945312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0835723876953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.035400390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.8974151611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.50669860839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.69924926757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.23410034179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.52935791015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.57411193847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1234588623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.4937744140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.4156494140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.89639282226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.2693634033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0641632080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.1684341430664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.55012512207031, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.40320587158203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.88780975341797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.59500122070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.817626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.4075927734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.60302734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.30447387695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.30870819091797, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.3443603515625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.27335357666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.47842407226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.28245544433594, \"water_flow\": 487.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.53224182128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.80815124511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.50611114501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.196044921875, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.32530212402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.26773071289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.104736328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.06472778320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.71365356445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.61331176757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.75665283203125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.06483459472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1956787109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.21249389648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7358856201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.3498077392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.163818359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3979034423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.364013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3853302001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.29006958007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.26866149902344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.91610717773438, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9794921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1420440673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.40457153320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.290283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.90805053710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0890350341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.97962951660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.85653686523438, \"water_flow\": 389.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.79830932617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.1720733642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7698974609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.28050231933594, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.46888732910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.83843994140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.9166259765625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.05844116210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.87461853027344, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.50938415527344, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.93972778320312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.97959899902344, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.72975158691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 172.80477905273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.02807331085205, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.932748794555664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.951330184936523, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.87710189819336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.53350830078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.802983283996582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.334928512573242, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.743412971496582, \"water_flow\": 1392.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.997796058654785, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.139253616333008, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.94464111328125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.835662841796875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.92691421508789, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.012723922729492, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.573505401611328, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.920705795288086, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.974550247192383, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.123435974121094, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.269248962402344, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.872901916503906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.323883056640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.64284133911133, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.236244201660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.23597717285156, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.63323211669922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.80672836303711, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.68165588378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.55382537841797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.2398910522461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.6650390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.79966735839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.5394515991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.5987548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.65997314453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.18383026123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.09361267089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.6136703491211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.76811981201172, \"water_flow\": 463.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.61099243164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.8523178100586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.50636291503906, \"water_flow\": 140.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.3758544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.70940399169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.96378326416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.50223541259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9212875366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.02564239501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.46825408935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.0509262084961, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.78990936279297, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7706298828125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.87332153320312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.86719512939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.23652648925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.28179168701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.77518463134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.65079498291016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.86367797851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.15229034423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.36662292480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.77095031738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.97505950927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.91411590576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.0007095336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.31332397460938, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.98908996582031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.66881561279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.89361572265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.79875946044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.27958679199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.77923583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.5916748046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.21205139160156, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.31610107421875, \"water_flow\": 645.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.85234069824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.88325500488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.24791717529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.43128204345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.80268096923828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.17488861083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.88040161132812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.53052520751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.60900115966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.4447021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.93009185791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.50942993164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.73583221435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.89775085449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.856201171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.6348648071289, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.119503021240234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.301856994628906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05847930908203, \"water_flow\": 1620.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.82768249511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.07088470458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.72759246826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.16674041748047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.80464935302734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.30313873291016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.09996795654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.61892700195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.75763702392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.09380340576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.75844955444336, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08377456665039, \"water_flow\": 1922.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 293.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.66681671142578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.97428131103516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.03119659423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.55160522460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.46450805664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.67933654785156, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.72349548339844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.17219543457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.02835845947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.95159912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.08334350585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2188262939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2554473876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.75425720214844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.11514282226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.51364135742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.81356811523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.24932861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.64572143554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.00685119628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.2467803955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.60183715820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5276336669922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.88587951660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0741424560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.63804626464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.39700317382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.70684814453125, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.3150405883789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.59278106689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.5666732788086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.30162048339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2104949951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.72743225097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6521759033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.46849060058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.65237426757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.43863677978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.26545715332031, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.24737548828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.77073669433594, \"water_flow\": 512.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.26451873779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.55547332763672, \"water_flow\": 868.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.10609436035156, \"water_flow\": 871.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.09011840820312, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.1014404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.57167053222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.69703674316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.3511962890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4238739013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2478790283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.19369506835938, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2698974609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.98611450195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.02989196777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6685791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5368194580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.71372985839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2925567626953, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31765747070312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.48583984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.17669677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1603240966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.76583862304688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.61448669433594, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.88941955566406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.28317260742188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5189971923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.06817626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.52500915527344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7889862060547, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.50115966796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.08216857910156, \"water_flow\": 392.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6082305908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.1227264404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.7689208984375, \"water_flow\": 179.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.00743103027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.30934143066406, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4727783203125, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.54330444335938, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.00668334960938, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1109161376953, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.40951538085938, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.37982177734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 172.21337890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 177.26112365722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.434835433959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.638065338134766, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.202169418334961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.236316680908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.094032287597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.583931922912598, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.573088645935059, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.57182788848877, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.25743293762207, \"water_flow\": 1442.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.7025728225708, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.909761428833008, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.87400245666504, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.502609252929688, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.868558883666992, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.15790557861328, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.45510482788086, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.60121726989746, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.435619354248047, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.396671295166016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.12228012084961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.83755874633789, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.71443176269531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.38675308227539, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.53025436401367, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.56606674194336, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.757205963134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.75934600830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.81635284423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.65948486328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.5278091430664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.00045013427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.22084045410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.65233612060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.78660583496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.25601959228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.2589111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.66854095458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.84075927734375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.88963317871094, \"water_flow\": 466.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.42385864257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.12100219726562, \"water_flow\": 142.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.28145599365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.49299621582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.11327362060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.04969024658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.59735870361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.51289367675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.10549926757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.70881652832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.96870422363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.7326889038086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.5359878540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.30696105957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.80005645751953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.36930084228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.11744689941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.79600524902344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.96807861328125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.95735931396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.6649398803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.37065887451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.45127868652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.16378021240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.10840606689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.71540832519531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.12387084960938, \"water_flow\": 132.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.39036560058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.48062896728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.90258026123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.93485260009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.43997955322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.64788055419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.31165313720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.6784439086914, \"water_flow\": 657.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.98065185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.64698791503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.56358337402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.17529296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.93851470947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.51203155517578, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.05403900146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.69158172607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.4874496459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.50153350830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.5013427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.66339111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.07154083251953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.09684753417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.9690170288086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.687496185302734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.42416763305664, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1603.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.57768630981445, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.39175415039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.94013977050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.51280212402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.28497314453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.53089904785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.09886169433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.42444610595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.96326446533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.86677551269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.31572341918945, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05004119873047, \"water_flow\": 1912.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 292.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.73273468017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.26433563232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.16138458251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.00691986083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.63175964355469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1937026977539, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.551025390625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.0808334350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8206329345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.71986389160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.26190185546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.92535400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.89447021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.2379608154297, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.32455444335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6551055908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.8369903564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.52406311035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.6279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.22244262695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.60362243652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.99977111816406, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.13504028320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.82542419433594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.27439880371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7306671142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2124786376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.35400390625, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.66802215576172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7567138671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.40650939941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.37637329101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.73580932617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.52093505859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.75332641601562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.27204132080078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.93649291992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.29034423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.41056823730469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.94088745117188, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.24219512939453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.7699203491211, \"water_flow\": 865.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.47467041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.86836242675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.46289825439453, \"water_flow\": 906.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.7232666015625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.94011688232422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.67357635498047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.17465209960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.13360595703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.52120971679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.16062927246094, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0035858154297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.47239685058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.94468688964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.07765197753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.72116088867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3131561279297, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.79989624023438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.04421997070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7129669189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.8942413330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.67938232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.87161254882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.06744384765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.91403198242188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.3252716064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.66412353515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.86573791503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.53903198242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.39959716796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.84617614746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6383819580078, \"water_flow\": 396.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9272918701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.73316955566406, \"water_flow\": 183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.90139770507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.26748657226562, \"water_flow\": 159.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.47000122070312, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.47000122070312, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.63880920410156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6145782470703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.90650939941406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.7264404296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.0526123046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 174.83331298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 178.11691284179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.706356048583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.91800308227539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.491256713867188, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.786957740783691, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.81729507446289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.180339813232422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.958123207092285, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.611311912536621, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.018391609191895, \"water_flow\": 1453.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.963357925415039, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.414527893066406, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.01868438720703, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.003093719482422, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.000097274780273, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.377811431884766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.39935302734375, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.55868148803711, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.279953002929688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.69217300415039, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.885095596313477, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.135990142822266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.1670036315918, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.985992431640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.459468841552734, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.67682647705078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.03893280029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.26332092285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.82235717773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.83332824707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.51913452148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.41537475585938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.08030700683594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.25302124023438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.9389419555664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.39533233642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.0192642211914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.72601318359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.72022247314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.81805419921875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.38630294799805, \"water_flow\": 619.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.999061584472656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.01629638671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.06562805175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.6434555053711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.96036529541016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.3565444946289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.94947814941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.20793914794922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.48250579833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.83751678466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.56382751464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.35306549072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.41895294189453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.54444122314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.26313781738281, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.5926513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.44851684570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.48646545410156, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.7955093383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.98834991455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.64895629882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.97700500488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.46585083007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.71161651611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.9374771118164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.33261108398438, \"water_flow\": 144.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.10682678222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.11412048339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.8826675415039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.71875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.54744720458984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.59107208251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.18982696533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.02982330322266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.14891815185547, \"water_flow\": 658.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.12444305419922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.86846923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.49934387207031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.06161499023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.37151336669922, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.54856872558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.09828186035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.12320709228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.79952239990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.66539001464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.82411193847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.39240264892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.0906982421875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.4946517944336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.535362243652344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1478.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09130859375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.97255325317383, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.2130355834961, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.5649185180664, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.01885223388672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.50212860107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.17408752441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.18767547607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.84455108642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.82853698730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.43850708007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.40781784057617, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1903.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 291.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.399986267089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.67710876464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.77310180664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.75563049316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.93386840820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.6426773071289, \"water_flow\": 252.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7674789428711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.58799743652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.79876708984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.86343383789062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.00712585449219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.25840759277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.38124084472656, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.52357482910156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.30636596679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7946319580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.2112579345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.37249755859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.67877197265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.73548889160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6442413330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.7163543701172, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.4677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.50015258789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.09629821777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.82711791992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.32281494140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.16580200195312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.37088012695312, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.91687774658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9251708984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.92848205566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.50125122070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.55512237548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.16649627685547, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.56507873535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.37037658691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4164276123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.89576721191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.82280731201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.63278198242188, \"water_flow\": 347.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.49703216552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.29435729980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.39839935302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.7791748046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.03269958496094, \"water_flow\": 913.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.11063385009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.97386169433594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.71926879882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.17273712158203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.37117004394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.36636352539062, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9075164794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.81558227539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.310791015625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.35543823242188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.6914825439453, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.54771423339844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.30284118652344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1253204345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8836669921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.08543395996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.805419921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4340057373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.25440979003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1821746826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9415283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1895294189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.90225219726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.98580932617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.57818603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.24436950683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.44552612304688, \"water_flow\": 399.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1919708251953, \"water_flow\": 184.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.33920288085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.97500610351562, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.59756469726562, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.58595275878906, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.22071838378906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.26197814941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.75497436523438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.2131805419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.71058654785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 172.64239501953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 175.58042907714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.556105613708496, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.912467002868652, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.500460624694824, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.970842361450195, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.629536628723145, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.339346885681152, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.007314682006836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.071988105773926, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.234609603881836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.489588737487793, \"water_flow\": 1472.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.745960235595703, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.562556266784668, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.58391761779785, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.767162322998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.10879898071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.859560012817383, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.709348678588867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.20152473449707, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.210412979125977, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.488489151000977, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.920318603515625, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.68389129638672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.348175048828125, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.31496047973633, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.15607833862305, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.78916549682617, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.30342483520508, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.94630432128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.98953247070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.26280212402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.79193115234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.82897186279297, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.73761749267578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.73252868652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.0864028930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.13134002685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.40348052978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.46089935302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.20874786376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.01546859741211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.18361282348633, \"water_flow\": 625.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.70802307128906, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.52937316894531, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.72119140625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.73141479492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.52803802490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.23033142089844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.77000427246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.38432312011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.28327941894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7970199584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.84520721435547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.84428405761719, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.97283172607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.81668853759766, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.32825469970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.31273651123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.97270202636719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.18588256835938, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.78895568847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.75394439697266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.48756408691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.24678039550781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.87787628173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.12901306152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.54170227050781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.96592712402344, \"water_flow\": 149.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.90584564208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.66105651855469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.12762451171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.28731536865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.9838638305664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.43692779541016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.67053985595703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.0285873413086, \"water_flow\": 670.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.95185852050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.3777084350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.36302947998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.41168212890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.75440216064453, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.26083374023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.60700988769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.54553985595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.0437240600586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.8011703491211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.11737823486328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.2813720703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.70901870727539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.735172271728516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05487060546875, \"water_flow\": 1468.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0502815246582, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.10683059692383, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.42428207397461, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.52927780151367, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.83922576904297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.28247833251953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.42003631591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.95784759521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.25200653076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.92901611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.45187377929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.40670013427734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.43248748779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.177978515625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1894.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.04410171508789, \"water_flow\": 290.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.0496826171875, \"water_flow\": 285.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.9401626586914, \"water_flow\": 279.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.84626770019531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.08334350585938, \"water_flow\": 268.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.66278076171875, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.32490539550781, \"water_flow\": 179.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.61933898925781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.5149917602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.72920227050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.38568115234375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4068145751953, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.51112365722656, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.91476440429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.74757385253906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.99986267089844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.8555908203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.85736083984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.04200744628906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.51373291015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.9034881591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.56622314453125, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.58251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.4955596923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.45028686523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.08250427246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.05197143554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.48120880126953, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.67247772216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.00775146484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.94212341308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.35397338867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.76614379882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.42899322509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.98828887939453, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.2381820678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.45828247070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.2084197998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.6890869140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.68128204345703, \"water_flow\": 343.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.05221557617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.21906280517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.7974853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.68479919433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.08041381835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.14833068847656, \"water_flow\": 916.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.67596435546875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.24820709228516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.40859985351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.38507080078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.74702453613281, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.60189056396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.40755462646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.34085845947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.73445892333984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.7146224975586, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6980743408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.99327087402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.54750061035156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.41981506347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.47695922851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.8617401123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.8316192626953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.01504516601562, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.93431091308594, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.53829956054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.43699645996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.71482849121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.15647888183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6436767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.18409729003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.61048889160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.25991821289062, \"water_flow\": 591.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.51072692871094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.2131805419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.54470825195312, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.5506591796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2611541748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.62904357910156, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.16773986816406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.4932098388672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.08755493164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.6315460205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 174.61508178710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 173.97129821777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 178.91627502441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.841843605041504, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.484258651733398, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.849431991577148, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.938248634338379, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.285374641418457, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.465038299560547, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.670555114746094, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.318925857543945, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.576339721679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.480681419372559, \"water_flow\": 1483.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.34186840057373, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.37342643737793, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.14965057373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.834196090698242, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.201683044433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.928735733032227, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.548242568969727, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.88901710510254, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.863794326782227, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.175830841064453, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.772695541381836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.417076110839844, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.57225036621094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.30590057373047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.412357330322266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.67103576660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.48802185058594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.262916564941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.55675506591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.23014068603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.42597198486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.11006927490234, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.25164031982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.13997650146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9765396118164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.26513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.30209350585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.66239929199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.97157287597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.5560188293457, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.171722412109375, \"water_flow\": 645.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.49091339111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.7274398803711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.9185562133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.93833923339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.23695373535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.0831069946289, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.73780059814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.5072021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.84627532958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.11853790283203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.80994415283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.73832702636719, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.75542449951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.27145385742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.86113739013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.41680908203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.41656494140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.21611785888672, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.2638168334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.77442932128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.80725860595703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.64616394042969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.63623046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.33719635009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.8270263671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.46028137207031, \"water_flow\": 153.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.6630630493164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.8386001586914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.09934997558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.69389343261719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.27025604248047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.99102783203125, \"water_flow\": 683.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.8198471069336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.48213958740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.12567901611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.49165344238281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.92930603027344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.49272155761719, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.21630096435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.98236846923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.84759521484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.80862426757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.11090087890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.34119415283203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.289772033691406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07472610473633, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1451.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.204444885253906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.952754974365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.15007019042969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.2939224243164, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.4529037475586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.24212646484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.66938781738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.68739318847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.32669830322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.69678497314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.78855895996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.04109954833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.00209045410156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.218414306640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1882.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.2381706237793, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.27193450927734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.89086151123047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.08145141601562, \"water_flow\": 274.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.42474365234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.4780502319336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.08541107177734, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.13939666748047, \"water_flow\": 178.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43540954589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.5104751586914, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.37493896484375, \"water_flow\": 157.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.92406463623047, \"water_flow\": 142.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.94951629638672, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3435516357422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.59857177734375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.96560668945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.31321716308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.76866149902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.410888671875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.01889038085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5519561767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.31622314453125, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.80838012695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.1909942626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.2474365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5329132080078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.39309692382812, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.42384338378906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.53985595703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.73597717285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.1923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.79640197753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.44706726074219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.33824157714844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.70752716064453, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.05685424804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.88948822021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.89849853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.75932312011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.75785827636719, \"water_flow\": 338.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.12171936035156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2311019897461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.99370574951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.024169921875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.8115234375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.91934204101562, \"water_flow\": 926.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.80657196044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.41439056396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.49797058105469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.78268432617188, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.50444793701172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.73884582519531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.85115814208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.20626068115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.69029998779297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.95169067382812, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.37164306640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.84463500976562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.4761962890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.75192260742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.6040496826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.1439208984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.5706329345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.18955993652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.37510681152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.43626403808594, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5415496826172, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.2042694091797, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.83583068847656, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.22549438476562, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.37962341308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6051483154297, \"water_flow\": 599.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.76364135742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.99490356445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.32603454589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.02391052246094, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.52093505859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.9762725830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7713165283203, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.11441040039062, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6258544921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.74720764160156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 166.71421813964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 174.08522033691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 174.80538940429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 175.9119873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.578391075134277, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.375611305236816, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.967653274536133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.375800132751465, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.601350784301758, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.91711711883545, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.846308708190918, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.3879976272583, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.520413398742676, \"water_flow\": 1484.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.22694206237793, \"water_flow\": 80.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.873814582824707, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.762356758117676, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.929814338684082, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.54637908935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.734596252441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.60698699951172, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.18431282043457, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.681509017944336, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.39929962158203, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.679521560668945, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.229351043701172, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.96489334106445, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.98464584350586, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.51119613647461, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.838958740234375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.04860305786133, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.755699157714844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.399925231933594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.08054733276367, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.21846389770508, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.4073600769043, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.43110656738281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.83045959472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.58258056640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.19058227539062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.12846374511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.06240844726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.93159484863281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.04215240478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.5301628112793, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.36637496948242, \"water_flow\": 648.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.75308227539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.40596008300781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.62215423583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9920654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.57038116455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.2425308227539, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.41297912597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.02334594726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.8730239868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.57833862304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.2989501953125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.97724151611328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.79914093017578, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.46443176269531, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.2021713256836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.6575698852539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.50489044189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.6436767578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.07488250732422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.892333984375, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.87194061279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.43244171142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.26188659667969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.29859924316406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.92959594726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.50699615478516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.41667938232422, \"water_flow\": 158.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.3311767578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.80806732177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.2643051147461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.99152374267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.36325073242188, \"water_flow\": 694.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.26639556884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.6755142211914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.03804779052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.74153137207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.79796600341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.87683868408203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.34676361083984, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.8312759399414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.01273345947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.19999694824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.8147201538086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.12483596801758, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.49552536010742, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.34013366699219, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1409.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.059814453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06180191040039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.169002532958984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.404598236083984, \"water_flow\": 102.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.517269134521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.25019836425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.18943786621094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.34840393066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.61279296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.3328857421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.04776763916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.3614273071289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.47765350341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.49609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.34934997558594, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.254329681396484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.37908935546875, \"water_flow\": 1865.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06300354003906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.573204040527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.90159606933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.11975860595703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.1259536743164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.96107482910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.26246643066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.76884460449219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.18707275390625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.2904281616211, \"water_flow\": 174.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.3154296875, \"water_flow\": 161.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0607147216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.12940979003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3420867919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0276641845703, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.32147216796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.64649963378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.78662109375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.28958129882812, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.82057189941406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.24774169921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.87147521972656, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.09274291992188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2006378173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5208740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.68716430664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.04722595214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.07127380371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.94839477539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.77296447753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.26881408691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.51113891601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.44558715820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.81743621826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.87158966064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.21353912353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.05921936035156, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.25341796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.2325210571289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.50415802001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.04170227050781, \"water_flow\": 334.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.87602996826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.65362548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.17797088623047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.80987548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.50640106201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.72859954833984, \"water_flow\": 937.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.26514434814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.19744110107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.31917572021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9736557006836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.19013214111328, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.30995178222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.24606323242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.78021240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.17288970947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.34313201904297, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.59721374511719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4188995361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.0229034423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.9983673095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.24212646484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.30099487304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.4806671142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.6593475341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.5276336669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0953826904297, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6492919921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5001678466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.27264404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.8129425048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.88153839111328, \"water_flow\": 638.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9490509033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0399627685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.45582580566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.24118041992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.22247314453125, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.27224731445312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.9151611328125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.91244506835938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.81277465820312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.3986358642578, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.91024780273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.29122924804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 170.8792724609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 170.8636474609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 172.44956970214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.143616676330566, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.120841979980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.868494033813477, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.3971586227417, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.033473014831543, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.789412498474121, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.03895378112793, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.130974769592285, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.364416122436523, \"water_flow\": 1633.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.144533157348633, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.653623580932617, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.801482200622559, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.875290870666504, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.042081832885742, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.244882583618164, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.781957626342773, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.91224479675293, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.332077026367188, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.01507568359375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.305383682250977, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.351627349853516, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.192630767822266, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.41497039794922, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.28251266479492, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.07691955566406, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.65493392944336, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.0538444519043, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.473018646240234, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.549293518066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.70020294189453, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.02888107299805, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.581451416015625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.03343963623047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.100341796875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.11991119384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.48068237304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.6915054321289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.51461029052734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.01986694335938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.411415100097656, \"water_flow\": 652.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.678382873535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.95952606201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.27777099609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.04961395263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.95335388183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.87629699707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.79114532470703, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.47051239013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.16336822509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.71509552001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.87752532958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.32913208007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.48719024658203, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.6298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.46981048583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.76451873779297, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.39324951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.54092407226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.25027465820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.51473999023438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.34796142578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.72285461425781, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.83416748046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.26644134521484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.46228790283203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.4571533203125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.01156616210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.03816986083984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.4172592163086, \"water_flow\": 251.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.87391662597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.62752532958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.2906265258789, \"water_flow\": 697.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.06742095947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.99823760986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.87120819091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.65921783447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.99495697021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.15186309814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.05546569824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.741455078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.27408599853516, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.81600952148438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.67775344848633, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.5850715637207, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.41654586791992, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05213165283203, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1399.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05006790161133, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.515472412109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.78205490112305, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.47882080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.86019134521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.07339096069336, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.20502471923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.11978149414062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.4390869140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.45551300048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.79910278320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.56922149658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.43157958984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.6473388671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.33651733398438, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.20690155029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.204994201660156, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.14031982421875, \"water_flow\": 1837.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.054359436035156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.34790802001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.20932006835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.21444702148438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.908935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.3205337524414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.39556121826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.21403503417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.252685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.91319274902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.61576080322266, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.28439331054688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.92745971679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.75607299804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.92236328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.01719665527344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9525604248047, \"water_flow\": 110.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.37596130371094, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6836395263672, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.39346313476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.89895629882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4290313720703, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.9174346923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2247772216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.30638122558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.09584045410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0133056640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1873779296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.25059509277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2238311767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.341796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.17802429199219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.18769073486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.73197937011719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.34073638916016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.16085815429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.99436950683594, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.92500305175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.71360778808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.89306640625, \"water_flow\": 330.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.80812072753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.49883270263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.10609436035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.33990478515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.42938995361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.0229721069336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.29386138916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.90415954589844, \"water_flow\": 938.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.20552825927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9442138671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89007568359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89852905273438, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.71150970458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.94393920898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.16761779785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.51292419433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.43404388427734, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.83207702636719, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.77076721191406, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.60693359375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.882080078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.197509765625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.11639404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.6658935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.93292236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.52969360351562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.14236450195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8128204345703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.56430053710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7857208251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.468994140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.32157897949219, \"water_flow\": 644.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.58914184570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4861297607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9571075439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.09605407714844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2206573486328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.3229522705078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.36367797851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.29542541503906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.84066772460938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.56109619140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.40818786621094, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.63833618164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.53250122070312, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.31129455566406, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.2366485595703, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.881690979003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.777148246765137, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.608407974243164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.323516845703125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.14299201965332, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.064169883728027, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.67553424835205, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.949945449829102, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.806766510009766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.2303466796875, \"water_flow\": 1643.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.007296562194824, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.730273246765137, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.05211353302002, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.903891563415527, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.956985473632812, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.04595184326172, \"water_flow\": 152.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.979894638061523, \"water_flow\": 141.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.69065284729004, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.341188430786133, \"water_flow\": 111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.23103141784668, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.374465942382812, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.392236709594727, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.01720428466797, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.93766403198242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.89084243774414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.258270263671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.06877517700195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.142147064208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.6472282409668, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.58008575439453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.305538177490234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.66923141479492, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.76770782470703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.34387969970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.45220184326172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.96464538574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.11885833740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.92030334472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.19300842285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.9156494140625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.51622009277344, \"water_flow\": 656.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.24724578857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.25484466552734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.41172790527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.70266723632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.46583557128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.8575668334961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.38922882080078, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.84263610839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.548095703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.66322326660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.66455078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.96735382080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.39739227294922, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.91043853759766, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.88516235351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.24910736083984, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.39381408691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.71366882324219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.92906951904297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.72512817382812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.4417495727539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.47180938720703, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.00444030761719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.01094055175781, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.834228515625, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.48351287841797, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.83106231689453, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.95943450927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.75841522216797, \"water_flow\": 258.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.22277069091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.96861267089844, \"water_flow\": 700.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.79560852050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.05193328857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.72605895996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.02002716064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.95700073242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.46377563476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.97789764404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.56373596191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.29999542236328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.25286865234375, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.01905059814453, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.873558044433594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.32133102416992, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1390.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05093765258789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.52521514892578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.21897506713867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.00027465820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.62276458740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.24947357177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.39852142333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.37989807128906, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.8302001953125, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.24323272705078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.64578247070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.02117156982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.1410140991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.23412322998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.51827239990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.53157043457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.74633026123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.76869201660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.775047302246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.24847412109375, \"water_flow\": 1737.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05002975463867, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.16049575805664, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.81788635253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.74369049072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.33495330810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.47412109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.250732421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.52495574951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.280517578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.79348754882812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.29624938964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.37811279296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.10533142089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.16217041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.41004943847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.8765106201172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7181396484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4521484375, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.12217712402344, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9028778076172, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.755615234375, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4965057373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.08526611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.27464294433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.27432250976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0555877685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.9736785888672, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4866943359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7262725830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.19430541992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.08889770507812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.12451934814453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6861801147461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.2448959350586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.3851318359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.86483001708984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.60830688476562, \"water_flow\": 276.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.6903076171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.29464721679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.91222381591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.28374481201172, \"water_flow\": 325.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.22080993652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.01803588867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.24457550048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.46129608154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.76456451416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.3187026977539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.45022583007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.99642944335938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89421081542969, \"water_flow\": 939.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.6878662109375, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.00211334228516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.66443634033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.2115478515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.28351593017578, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.8171615600586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0954132080078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.30699157714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.9372100830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.7075653076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.88148498535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.93350219726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.96434020996094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.97384643554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8583526611328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.41702270507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.27932739257812, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.63397216796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.60427856445312, \"water_flow\": 648.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7125701904297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.982666015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.39083862304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9104461669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.60726928710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.73114013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.3411102294922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.5620880126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.4088897705078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.29336547851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.0936279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.28713989257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.50619506835938, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.56173706054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.61843872070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6507950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 170.61033630371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.125569343566895, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.805987358093262, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.533398628234863, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.35213851928711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.203137397766113, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.091413497924805, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.973313331604004, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.592568397521973, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.5282621383667, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.135659217834473, \"water_flow\": 1651.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.63176441192627, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.610238075256348, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.907902717590332, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.053078651428223, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.55404281616211, \"water_flow\": 155.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.485658645629883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.40841293334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.54009437561035, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.206125259399414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.93775749206543, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.828777313232422, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.304733276367188, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.08702087402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.947757720947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.108856201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.80282211303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.73863220214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.156822204589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.013832092285156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.485252380371094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.049861907958984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.8782844543457, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.466915130615234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.46443176269531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.8388671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.42878723144531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.30795288085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.39091491699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.11631774902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.0598258972168, \"water_flow\": 665.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.919734954833984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.97312927246094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.01798629760742, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.775962829589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.82463836669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.47552490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.04985046386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.74586486816406, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.67686462402344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.3454360961914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.3093490600586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.1112060546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.72250366210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.84514617919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.85516357421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.96612548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.27800750732422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.34786987304688, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.62091827392578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.72499084472656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.9112548828125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.8321533203125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.78606414794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.96318054199219, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.9743881225586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.34693908691406, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.11811065673828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.8321304321289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.03876495361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.56556701660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.89306640625, \"water_flow\": 263.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.74969482421875, \"water_flow\": 703.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.2153549194336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.77808380126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.8975601196289, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.09200286865234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.68842315673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.76522064208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.87162017822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.31927490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.9682388305664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.43418884277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.000205993652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.70803451538086, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05051040649414, \"water_flow\": 1375.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.15363693237305, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.921016693115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.170860290527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.6573715209961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.29823303222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.99365997314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.1697998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.43112182617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.4078140258789, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.81684112548828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.78395080566406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.96888732910156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.35400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.0959701538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.43656921386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.68466186523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.2941665649414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.01642608642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.27167510986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.483863830566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.23815155029297, \"water_flow\": 1732.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.50028610229492, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.04426574707031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.65966033935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.98770904541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.57388305664062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.73417663574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.57157135009766, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.26802062988281, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.84615325927734, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.84346008300781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.97509765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.87400817871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.72433471679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.56570434570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.99192810058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9702911376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6635284423828, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.49288940429688, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.53346252441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.92263793945312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.35385131835938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.04396057128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.26882934570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1350860595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8619842529297, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.91961669921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.34449768066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.62913513183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2353973388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.45848083496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8619384765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.81759643554688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.77056121826172, \"water_flow\": 208.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.46977996826172, \"water_flow\": 229.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.61151885986328, \"water_flow\": 236.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.99951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.28021240234375, \"water_flow\": 279.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.34571075439453, \"water_flow\": 285.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8748550415039, \"water_flow\": 319.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.57939147949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.01045989990234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.31571197509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.77766418457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.11919403076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.61710357666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.02355194091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.06070709228516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89041137695312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 940.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.05911254882812, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.07674407958984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.34444427490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.6343002319336, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.51626586914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.81561279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.17431640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.7438201904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.50563049316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.6193084716797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.9503173828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.996826171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.81529235839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.321044921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.20452880859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.87191772460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6261444091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.14479064941406, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.3216781616211, \"water_flow\": 654.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.36880493164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.79722595214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.05970764160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.16615295410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.44732666015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.52696228027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.68080139160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.5350799560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.83474731445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.0725555419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.94346618652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.00132751464844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.36399841308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.03431701660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.6680450439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 173.59219360351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.657440185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.198322296142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.757136344909668, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.47454833984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.278091430664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.977463722229004, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.877752304077148, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.661003112792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.746834754943848, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.067439079284668, \"water_flow\": 1661.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.096368789672852, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.814478874206543, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.550146102905273, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.089815139770508, \"water_flow\": 157.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.85764503479004, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.427228927612305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.961021423339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.5100154876709, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.78827476501465, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.668941497802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.97466278076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.90168571472168, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.72189712524414, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.44178009033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.276214599609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.059085845947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.812198638916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.46710968017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.346282958984375, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.622135162353516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.459808349609375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.808692932128906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.845645904541016, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.38429260253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.61832809448242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.07773971557617, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.54524230957031, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.20393753051758, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.82361602783203, \"water_flow\": 669.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.25244140625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.944480895996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.037330627441406, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.993064880371094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.23796844482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.6070327758789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.57353210449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.17805480957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.97122192382812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.7280044555664, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.67877960205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.22319793701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.97399139404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.13066101074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.24891662597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.65177917480469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.3381118774414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.52447509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.18375396728516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.95463562011719, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.29264831542969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.56023406982422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.06597900390625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.72492218017578, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.22445678710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.63550567626953, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.02655029296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.9312973022461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.28053283691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.13471984863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.12278747558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.78176879882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.15530395507812, \"water_flow\": 971.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.5716323852539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.04418182373047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.095458984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.37769317626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.12278747558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.18201446533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.0745620727539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.29589080810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.79593658447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.71997833251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.09429168701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0850715637207, \"water_flow\": 1311.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.077293395996094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.33195877075195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.90324020385742, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.9170150756836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.8539810180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.87922668457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.69539642333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.45716094970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.99369049072266, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.9122543334961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.2885971069336, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.08830261230469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.88256072998047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.88263702392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.196533203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.2392349243164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.90927124023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.73385620117188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.01943969726562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.86407470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.19540786743164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.140865325927734, \"water_flow\": 1726.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.054420471191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.2403564453125, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.066768646240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.65407180786133, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.47779083251953, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.99544525146484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.09456634521484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.50482940673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.9039077758789, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.5525131225586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.8636245727539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.03378295898438, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0388641357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.4681396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.01144409179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.77830505371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.32496643066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.49803161621094, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.38641357421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.73789978027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.74391174316406, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5570831298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.36143493652344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.04058837890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.17767333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8875274658203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6905975341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5293426513672, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4945526123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7687530517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0094757080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.21336364746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.1124267578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.48035430908203, \"water_flow\": 198.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.56954956054688, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5806884765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.0976791381836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9021224975586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71175384521484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.79499053955078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.17383575439453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.43297576904297, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.73065185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.28641510009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.8134994506836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.03742218017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.11056518554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.61144256591797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.00341796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89118194580078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 941.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.97859191894531, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4926528930664, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.45622253417969, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.34866333007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3431625366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.66900634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.79100036621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.47830200195312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.10093688964844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.1624755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.4044952392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.3024444580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.1511993408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5409393310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.89126586914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.24095153808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9114532470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2332000732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.86016082763672, \"water_flow\": 664.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.50241088867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.76113891601562, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.9750518798828, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.20603942871094, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.1704864501953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.95745849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.80860900878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.74462890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.90049743652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.41639709472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.9402618408203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.58018493652344, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.6513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.8896484375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 168.15061950683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 174.05575561523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.069649696350098, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.607182502746582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.091935157775879, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.522881507873535, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.943281173706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.527121543884277, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.145013809204102, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.822440147399902, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.37661075592041, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.508633613586426, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.547882080078125, \"water_flow\": 1680.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.3411226272583, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.265803337097168, \"water_flow\": 158.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.271133422851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.064979553222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.727678298950195, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.263174057006836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.99570083618164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.6557559967041, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.005672454833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.967052459716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.93378257751465, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.72570037841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.40166091918945, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.04468536376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.968238830566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.93654251098633, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.35945129394531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.012298583984375, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.26286315917969, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.58130645751953, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.89352035522461, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.25870132446289, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.67666244506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.494224548339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.064361572265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.545326232910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.52919387817383, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.05051803588867, \"water_flow\": 676.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.880374908447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.16810607910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.997989654541016, \"water_flow\": 147.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.384437561035156, \"water_flow\": 132.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.73395538330078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.608543395996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.06348419189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.6299819946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.49761962890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.09906005859375, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.81015014648438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.99054718017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.28531646728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.7042007446289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.39910125732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.49415588378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.23881530761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.52070617675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.4684066772461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.55851745605469, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.51006317138672, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.28961181640625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.72098541259766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.77423095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.36067199707031, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.76863861083984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.69120788574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.47035217285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.70708465576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.27056121826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.54937744140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.29320526123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.40509796142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.62069702148438, \"water_flow\": 982.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.67765045166016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.42823791503906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.93431854248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.1362075805664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.27178192138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.8670654296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.9568099975586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.80218505859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.75286102294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.711814880371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05000305175781, \"water_flow\": 1300.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08258056640625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.31217956542969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.696102142333984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.70586395263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.41329956054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.93757629394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.59632110595703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.42371368408203, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.186279296875, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.41546630859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.16983032226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.53609466552734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.4502944946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.80695343017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.4447250366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.33905029296875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.83651733398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.37368774414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.37890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.39473724365234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.287540435791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.051307678222656, \"water_flow\": 1714.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.2043571472168, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.974708557128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.3242073059082, \"water_flow\": 95.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.076194763183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.43569946289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.48060607910156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.6094970703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.99258422851562, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.8025894165039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.92875671386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.16961669921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.8970184326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.50140380859375, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.5284423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7796173095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.80755615234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.67626953125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1320037841797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.25436401367188, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5995635986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.31057739257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.56808471679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.73948669433594, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.648193359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.5658721923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1164093017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0216522216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.63539123535156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.39031982421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.10789489746094, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.57469177246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.70138549804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.34186553955078, \"water_flow\": 189.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.92195129394531, \"water_flow\": 194.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.76087188720703, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.28829956054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.1111297607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.76937866210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8627166748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.12548828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.7869644165039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.20101928710938, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.44002532958984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.98677825927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.745361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.97404479980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.1840591430664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.10952758789062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.69454193115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.22022247314453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.0213623046875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89047241210938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89002227783203, \"water_flow\": 942.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.08027648925781, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.06755065917969, \"water_flow\": 138.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.83733367919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.33109283447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.28382110595703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.68485260009766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.56980895996094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.96188354492188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.51693725585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.0897216796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.12664794921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.9378662109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.9901885986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.40980529785156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8899688720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.71340942382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.57261657714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.93286895751953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.52172088623047, \"water_flow\": 693.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.96918487548828, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.59039306640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.8677215576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.95217895507812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.56024169921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.82066345214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.81105041503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6737060546875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.809326171875, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.23756408691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.10690307617188, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.58346557617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.15145874023438, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.1820068359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 166.60646057128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 173.45187377929688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.186224937438965, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.779372215270996, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.9993257522583, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.09088134765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.944294929504395, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.291640281677246, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.988280296325684, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.75705623626709, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.885576248168945, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.581751823425293, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.533830642700195, \"water_flow\": 1696.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.299176216125488, \"water_flow\": 159.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.98520278930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.768839836120605, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.521740913391113, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.335086822509766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.06698989868164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.407716751098633, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.98645782470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.709510803222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.82609748840332, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.03264045715332, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.817901611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.26393127441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.18206024169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.41295623779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.343990325927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.77106857299805, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.99489974975586, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.706871032714844, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.82663345336914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.38959503173828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.839542388916016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.39432525634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.31495666503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.00651550292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.04602813720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.99020767211914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.268714904785156, \"water_flow\": 696.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.69557571411133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.34686279296875, \"water_flow\": 149.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.7408447265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.054443359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.61235809326172, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.44999694824219, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.1965560913086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.27967834472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.62684631347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.84695816040039, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.15589141845703, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.93258666992188, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6376953125, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.74227142333984, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.29649353027344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.72745513916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.8636703491211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.65394592285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.39937591552734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.70396423339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.53704833984375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.330078125, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.68225860595703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.26394653320312, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.50680541992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.76876068115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.62899780273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.77782440185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.69900512695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.24420166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.69892120361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.515380859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.53097534179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.05366516113281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.02790069580078, \"water_flow\": 993.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.98738098144531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.15583038330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.92353820800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.98825073242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.80677032470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.91407775878906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.63766860961914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.743675231933594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0500373840332, \"water_flow\": 1289.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06782531738281, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.55908203125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.524559020996094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.53553771972656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.28907012939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.92748260498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.46744537353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.89608764648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.35070037841797, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.55757141113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.33824157714844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.2144775390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.04747772216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.28083038330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.73038482666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.24738311767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.2729721069336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.62651062011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.38691711425781, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.49803161621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.93528747558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.19072723388672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.38858413696289, \"water_flow\": 1703.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09308624267578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.421783447265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.351585388183594, \"water_flow\": 93.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.53736114501953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.05867004394531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.3369140625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.25142669677734, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.55569458007812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.82635498046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3928985595703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5336456298828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9877166748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.57888793945312, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.87535095214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.27874755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.94161987304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.61497497558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.51829528808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9093017578125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.75942993164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.00967407226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6952667236328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.46669006347656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9556427001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.40689086914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.34249877929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0968017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.53367614746094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.20498657226562, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.4265899658203, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.58364868164062, \"water_flow\": 111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.67335510253906, \"water_flow\": 186.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.05715942382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.75474548339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2891082763672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1207275390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.1255645751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.91636657714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.44802856445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.81289672851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.744873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.14029693603516, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.06757354736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.31009674072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.80224609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.82621002197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.83155059814453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.65093994140625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.0340576171875, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.48060607910156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.40609741210938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.980224609375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.90709686279297, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.2848892211914, \"water_flow\": 943.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.09043884277344, \"water_flow\": 146.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.73462677001953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.21720123291016, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.30525970458984, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.14862060546875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.2759552001953, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.016357421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4003448486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.74978637695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.99114990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.72512817382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.61839294433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.36056518554688, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.72857666015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.214111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.08927154541016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.17512512207031, \"water_flow\": 705.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.13441467285156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8383026123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7308349609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.2963409423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.6543426513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.4302215576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.13388061523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.61642456054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.40260314941406, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.7676239013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.14276123046875, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.76979064941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.39649963378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.58383178710938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.7874298095703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.32867431640625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 173.91229248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.87026596069336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.436946868896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.245539665222168, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.942854881286621, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.58008861541748, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.043341636657715, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.18560791015625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.2252779006958, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.52514934539795, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.55487060546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.355047225952148, \"water_flow\": 1857.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.094036102294922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.828343391418457, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.096487998962402, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.072958946228027, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.031238555908203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.54800033569336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.579795837402344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.75282096862793, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.33927345275879, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.060047149658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.56526756286621, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.4490852355957, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.92628860473633, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.85396957397461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.67194747924805, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.40053939819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.014564514160156, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.58292007446289, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.40113830566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.77647018432617, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.55670928955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.31153869628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.79924011230469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.21185302734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.9130630493164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.6479263305664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.09090423583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.60414505004883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.55134963989258, \"water_flow\": 847.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.065589904785156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.61589431762695, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.26943588256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.83379364013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.64054489135742, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.273014068603516, \"water_flow\": 110.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.556941986083984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.419979095458984, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.71833038330078, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.3877944946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.9300765991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.18387603759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.95025634765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.15851593017578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.570556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.73243713378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.7597427368164, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.53630828857422, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.69104766845703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.79776763916016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.63986206054688, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.97784423828125, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.93899536132812, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.88858795166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.064208984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.67896270751953, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.06245422363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.54423522949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.74010467529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.20376586914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.80931091308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.32203674316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.2601089477539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.78662872314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.7090072631836, \"water_flow\": 1000.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.7999496459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.46347045898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.06789016723633, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.562461853027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.26030731201172, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.21316909790039, \"water_flow\": 1130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05000305175781, \"water_flow\": 1274.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050018310546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.20458221435547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.76712417602539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.68031311035156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.2066421508789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.77066802978516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.54193115234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.40840148925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.40673065185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.27497863769531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.07012939453125, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.3423080444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.689208984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.69247436523438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.56816864013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.24585723876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.40145874023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.83084869384766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.69528198242188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.31040954589844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.83094024658203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.89337158203125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.69742584228516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.106781005859375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.099365234375, \"water_flow\": 1686.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05789566040039, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.621089935302734, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.04521942138672, \"water_flow\": 85.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.17068481445312, \"water_flow\": 80.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.265869140625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.93653106689453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.56082153320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.88772583007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6986846923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.1836395263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.73500061035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.36898803710938, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.77981567382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.20556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.53961181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.34275817871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9098663330078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.8205108642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.74465942382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.89891052246094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9300994873047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.10272216796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.25982666015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.52935791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.10438537597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.58522033691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7284698486328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.06787109375, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.65003967285156, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.2257843017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.91314697265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.2628631591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.2044677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.85580444335938, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.250244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.16616821289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.0272216796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.90245056152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.674072265625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.66259765625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.64897918701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.2923812866211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.63661193847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.83867645263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.36690521240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.80368041992188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.88910675048828, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.37086486816406, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.74446105957031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.41596984863281, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89566802978516, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.898681640625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.32599639892578, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.239013671875, \"water_flow\": 1119.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.61624908447266, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.3176040649414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.86454772949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.49517059326172, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.28274536132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.11056518554688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1265411376953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.80068969726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.02499389648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.8789825439453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3678436279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.64214324951172, \"water_flow\": 741.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.23788452148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.26788330078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.94830322265625, \"water_flow\": 716.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.89300537109375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.338134765625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.67083740234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.3601531982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.9584197998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.99551391601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.32229614257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6759033203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.4403076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.37745666503906, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.07789611816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.15237426757812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.58917236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.7238311767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.6070098876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.53732299804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.0817108154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 172.1356658935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.578463554382324, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.0360107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.858859062194824, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.389918327331543, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.525644302368164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.158130645751953, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.141523361206055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.212013244628906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.856821060180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.524048805236816, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.398277282714844, \"water_flow\": 1863.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.924541473388672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.627094268798828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.7062406539917, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.769646644592285, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.90450096130371, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.995363235473633, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.218887329101562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.985008239746094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.226688385009766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.03837013244629, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.621906280517578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.648359298706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.709571838378906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.258995056152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.73796081542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.103424072265625, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.897178649902344, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.805789947509766, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.66895294189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.05222702026367, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.34436798095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.20433807373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.5726089477539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.02217102050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.21818542480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.97172546386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.67679595947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.21234130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.946372985839844, \"water_flow\": 855.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.55632400512695, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.178951263427734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.12248229980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.80304718017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.364315032958984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.376808166503906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.662899017333984, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.12968063354492, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.41242980957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.994232177734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.19481658935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.88666534423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.94812774658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.36328887939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.92576599121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.51168823242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.95585632324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.02288055419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.03338623046875, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.97453308105469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.7210922241211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.15231323242188, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.49726867675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.91078186035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.36436462402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.78984832763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.68746185302734, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.12236022949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.75056457519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.89262390136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.35950469970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.98778533935547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.91717529296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.8044204711914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.68561553955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.33580780029297, \"water_flow\": 1002.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.77164840698242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.57037353515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05207443237305, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 131.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.10452651977539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.27342224121094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.536109924316406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.5776138305664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.5689926147461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.73534393310547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.99250793457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.90448760986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.66680145263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.3958740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.48328399658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.03009033203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.89042663574219, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6890640258789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0237808227539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.45230865478516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.07823181152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.92788696289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.7608642578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.99998474121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.54598236083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.57256317138672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.24411010742188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.79014205932617, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08915710449219, \"water_flow\": 1637.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07334518432617, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.06553649902344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.7713394165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.1618423461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.17635345458984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.42687225341797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5823211669922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.09573364257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.43939208984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.72715759277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.19712829589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5301513671875, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.18618774414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.04049682617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.71971130371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.9779815673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.73080444335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.01358032226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.63755798339844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.8475799560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.88522338867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9675750732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.91720581054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.76609802246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.91355895996094, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.44517517089844, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.53952026367188, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.0095977783203, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.24205017089844, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8414764404297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.24298095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.51644897460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.35975646972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.32557678222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1353302001953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.11846923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.25985717773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5919647216797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.52684020996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.82637786865234, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.29673767089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.20462036132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.79911041259766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.93102264404297, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.47258758544922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.70352935791016, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.5008773803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.17935180664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.69297790527344, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.59725952148438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.96090698242188, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89010620117188, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.3409194946289, \"water_flow\": 1135.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.93284606933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.72761535644531, \"water_flow\": 948.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.58649444580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.66890716552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.33747100830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.53749084472656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.98190307617188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.71603393554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.68067932128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4867401123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.0135955810547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.49211120605469, \"water_flow\": 781.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.99144744873047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.21949768066406, \"water_flow\": 727.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.9945297241211, \"water_flow\": 722.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.33935546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.1261749267578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.8597412109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.46791076660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.29074096679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.34388732910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.09902954101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.22152709960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.47476196289062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.69973754882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.67556762695312, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.4247283935547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.18292236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.97203063964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.9723358154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.6010284423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.84364318847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.53665161132812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 167.05877685546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.603317260742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.155524253845215, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.365082740783691, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.75709056854248, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.975261688232422, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.403456687927246, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.751667022705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.707452774047852, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.126309394836426, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.80201244354248, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.633094787597656, \"water_flow\": 1875.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.735077857971191, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.428236961364746, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.512532234191895, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.512151718139648, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.482685089111328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.622268676757812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.186033248901367, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.20855140686035, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.795860290527344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.064882278442383, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.95172882080078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.01401710510254, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.757057189941406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.92747116088867, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.85464096069336, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.038230895996094, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.436519622802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.34955596923828, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.28559112548828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.447139739990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.621673583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.37006378173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.69076538085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.91182708740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.64303588867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.9194107055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.26704406738281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.888668060302734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.286441802978516, \"water_flow\": 858.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.152706146240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.126991271972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.494449615478516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.93173217773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.21233367919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.41963577270508, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.46471405029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.82559585571289, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.251930236816406, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.47471237182617, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.21714782714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.89842224121094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.92020416259766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.91673278808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7770004272461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.20632934570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.23062896728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.06385040283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.58207702636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.18038177490234, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.16481018066406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.3927001953125, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.72380828857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.13082122802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.12417602539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.7997055053711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.05633544921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.66093444824219, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.59651947021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.50257873535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.59280395507812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.97283935546875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.25746154785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.68438720703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.6703109741211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.511898040771484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.89456558227539, \"water_flow\": 1003.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.87095642089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05555725097656, \"water_flow\": 1112.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 99.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.062644958496094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.062164306640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.5597915649414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.25386047363281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.01187896728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.06291961669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.70654296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.8658218383789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.278564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5562515258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.70265197753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.92748260498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.30195617675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.54013061523438, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.40454864501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.94473266601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.41575622558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.6565933227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.81670379638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.46127319335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.99851989746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.29490661621094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.58895874023438, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.2796859741211, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.40559005737305, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05046081542969, \"water_flow\": 1584.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.37278747558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.536102294921875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.46346282958984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.67337799072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.9594497680664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.5337371826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.86769104003906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.37855529785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2248077392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.05421447753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.8290252685547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9100341796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.736083984375, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.9630126953125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.31362915039062, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.40663146972656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.93235778808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.7159423828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.67039489746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.50296020507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.9333953857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.33843994140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8818817138672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.25779724121094, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.9614715576172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6894989013672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.24990844726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.71917724609375, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.32228088378906, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.76832580566406, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.8865203857422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6159210205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1608123779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.4161376953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.49658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.30274963378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.9174346923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.76527404785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.54733276367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.72755432128906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9046630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5484161376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.4654312133789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.8692626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.41388702392578, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.70925903320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.51209259033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.85038757324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.34534454345703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.47344207763672, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.9456558227539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.16664123535156, \"water_flow\": 2097.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.5415267944336, \"water_flow\": 952.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.04891967773438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.31585693359375, \"water_flow\": 947.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.01790618896484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.89315032958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.92749786376953, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.58621215820312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.731201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.760009765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.59194946289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.80537414550781, \"water_flow\": 785.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.26940155029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.84326171875, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.89309692382812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.72787475585938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.71397399902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.54214477539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.14926147460938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.70436096191406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.62879943847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.7818145751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.7307891845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7543182373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.35682678222656, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.86412048339844, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.7379150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.942138671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.152587890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.1512908935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.99693298339844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.39041137695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.35443115234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.75064086914062, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.83274841308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.902732849121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.911666870117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.027862548828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.055832862854004, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.666276931762695, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.076207160949707, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.93794059753418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.692953109741211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.852508544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.628301620483398, \"water_flow\": 1877.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.634763717651367, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.683048248291016, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.071000099182129, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.423905372619629, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.460892677307129, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.49756908416748, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.5548038482666, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.758262634277344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.872766494750977, \"water_flow\": 143.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.525726318359375, \"water_flow\": 137.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.278654098510742, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.90475845336914, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.671171188354492, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.873676300048828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.73504638671875, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.43424606323242, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.096046447753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.421791076660156, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.560550689697266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.37114334106445, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.07069778442383, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.567989349365234, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.413455963134766, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.27639770507812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.35409545898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.99430847167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.4436264038086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.914703369140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.62409210205078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.721012115478516, \"water_flow\": 862.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.41470718383789, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.78297424316406, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.94936752319336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.99290466308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.88727569580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.70817565917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.54756164550781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.518070220947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.33085632324219, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.85393524169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.45946502685547, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.71440124511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.65916442871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.55641174316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.19055938720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.7151107788086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.15116119384766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.36935424804688, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.22147369384766, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.09015655517578, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.0676040649414, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.35882568359375, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.50586700439453, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.32057189941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.34823608398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.2228775024414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.97078704833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.50174713134766, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.46680450439453, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.19580841064453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.08126068115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.20635223388672, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.69849395751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.45635986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.58625793457031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.19826126098633, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.20513153076172, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.14019775390625, \"water_flow\": 1111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050079345703125, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05066680908203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.572479248046875, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.960548400878906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.36045837402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.19178009033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.3133316040039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.12480926513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.38995361328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.9725112915039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.66532897949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.57769012451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.93448638916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.2777099609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.90653228759766, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.0286865234375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.63455200195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.08920288085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.22317504882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.62794494628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.92768096923828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.64693450927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.87210845947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.50041198730469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.87137603759766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.10655212402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.23442840576172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05002212524414, \"water_flow\": 1550.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.6497917175293, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.985862731933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.78204345703125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.6259765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.48456573486328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.24253845214844, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6197509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.89013671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.46107482910156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.09762573242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.16539001464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.8863067626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.67323303222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5487060546875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.46302795410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.23196411132812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.58026123046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.8695068359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.1099395751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.951904296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6563720703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.103271484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.9121856689453, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.30540466308594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2457733154297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.5522003173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.40365600585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.81613159179688, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.04730224609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.98265075683594, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.75575256347656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.39947509765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.33116149902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.33375549316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.15843200683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.27658081054688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.72967529296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.10089111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.8356170654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.57681274414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.12176513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.78411865234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.10530090332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.89804077148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.18509674072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.18168640136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.97451782226562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.92132568359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.7281723022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.32974243164062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89729309082031, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.88999938964844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89000701904297, \"water_flow\": 2129.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.08030700683594, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.4673080444336, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.2717514038086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.42372131347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.96746826171875, \"water_flow\": 943.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.9124755859375, \"water_flow\": 940.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.95201110839844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.08428192138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.03591918945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9185028076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.11751556396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.62747192382812, \"water_flow\": 793.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.20120239257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.53367614746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.59548950195312, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.33596801757812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.13706970214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.97425842285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.0740509033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.99290466308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.4881591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.3753204345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.6499481201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.90951538085938, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.88894653320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7143096923828, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.41354370117188, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.5841064453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.82713317871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.09671020507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.48597717285156, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.2845916748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.14215087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.32640075683594, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.15577697753906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.721822738647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.093963623046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.816389560699463, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.3640313148498535, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.445384979248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.940328598022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.830904006958008, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.37395191192627, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.34270191192627, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.200371742248535, \"water_flow\": 1880.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.355648040771484, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.703513145446777, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.11689281463623, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.606626510620117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.339469909667969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.255648612976074, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.820016860961914, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.71198081970215, \"water_flow\": 145.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.73588752746582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.674800872802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.28473472595215, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.663806915283203, \"water_flow\": 120.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.488157272338867, \"water_flow\": 114.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.826406478881836, \"water_flow\": 108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.544349670410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.340171813964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.75745391845703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.93352508544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.23622131347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.13496398925781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.57802963256836, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.307308197021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.39834594726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.91075897216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.45545959472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.70880889892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.00138092041016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.919593811035156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.04588317871094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.59038162231445, \"water_flow\": 885.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.793601989746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.59888458251953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.54069519042969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.84742736816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.66912078857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.13045501708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.32025909423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.561649322509766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.46179962158203, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.85300064086914, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.68375015258789, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.7725601196289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.11001586914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.35649108886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.23329162597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.78764343261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.31319427490234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.81303405761719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.62784576416016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.36958312988281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.21751403808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.37568664550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.99894714355469, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.16815948486328, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.26296997070312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.49299621582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.43505096435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.18120574951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.65111541748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.79508972167969, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.56820678710938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.02412033081055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.759620666503906, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.663089752197266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.274051666259766, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050010681152344, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05000305175781, \"water_flow\": 63.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.435333251953125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.67289733886719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.92707824707031, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.39510345458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.05259704589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.64498901367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.58660888671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54194641113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.0016860961914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.08319854736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.10845184326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.88985443115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.27127075195312, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.84555053710938, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.11454772949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.04515838623047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.22389221191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.70689392089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.79669952392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.54649353027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.71897888183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.64997100830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.56816101074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.70964050292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.53522491455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.23590850830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09850311279297, \"water_flow\": 1543.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.39922332763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.409400939941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.1316909790039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.33795166015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.89901733398438, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.42385864257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.95849609375, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.7013397216797, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.33761596679688, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.04541015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.8682861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.2389678955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.2857208251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.51072692871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.55198669433594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.62486267089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.34873962402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.63717651367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.91929626464844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9514923095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.120361328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3900146484375, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.46238708496094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.1991729736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.74124145507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.95486450195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2242889404297, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.45166015625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.11737060546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.01881408691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.14447021484375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.13446044921875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.06724548339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.43695068359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7378692626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.76968383789062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.716552734375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.14976501464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4227752685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.58958435058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.77024841308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.98568725585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.84342956542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.52584838867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.91741180419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.81971740722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.09587097167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.72199249267578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.01760864257812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.17080688476562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89612579345703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.8913345336914, \"water_flow\": 2175.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.0146255493164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.794189453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.41674041748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.36164855957031, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.2337646484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.46680450439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.68844604492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.53034210205078, \"water_flow\": 924.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.38449096679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.74954986572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.61483764648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.0222396850586, \"water_flow\": 797.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.45223999023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.94691467285156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.3470458984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.90541076660156, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.91542053222656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.68743896484375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.98094177246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.99253845214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.41748046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.13502502441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.11740112304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.5655975341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.62689208984375, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.42388916015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.99949645996094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.52452087402344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.77163696289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.15016174316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.43289184570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.3008270263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.222900390625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4132537841797, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.55029296875, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.9635772705078, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.584705352783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.107528686523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.6437201499938965, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.5955705642700195, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.34691047668457, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.586149215698242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.623600006103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.094012260437012, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.828983306884766, \"water_flow\": 1885.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.011817932128906, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.287306785583496, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.725120544433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.235615730285645, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.405278205871582, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.775239944458008, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.9473295211792, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.370454788208008, \"water_flow\": 146.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.5301456451416, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.785188674926758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.304494857788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.743589401245117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.92573356628418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.19143295288086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.544525146484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.62139129638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.0944709777832, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.15125274658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.33930969238281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.30772399902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.198665618896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.28559494018555, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.222923278808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.39167404174805, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.59693908691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.952392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.94818878173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.84918212890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.60781478881836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.56758117675781, \"water_flow\": 892.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.07571792602539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.2180290222168, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.93325424194336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.797607421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.08412170410156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.79578399658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.53382110595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.8422622680664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.886375427246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.0521240234375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.36298751831055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.251651763916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.78163146972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.00432586669922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11195373535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.62986755371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.20096588134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.32572937011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.50791931152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.68193817138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.9091567993164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.60977172851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.33735656738281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.48550415039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.09245300292969, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.99282836914062, \"water_flow\": 91.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.71650695800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.94780731201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.06664276123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.93792724609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.9967041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.30193328857422, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.92299270629883, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.0063591003418, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.57563781738281, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.09507751464844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05031967163086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.25402069091797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.728824615478516, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.60319519042969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.11691284179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.69831085205078, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.88324737548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.89629364013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.1859359741211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.73946380615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.60697937011719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.95442962646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.51326751708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.896484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.73388671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.01414489746094, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.24422454833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.43122100830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0436248779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.17608642578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.98228454589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.8850326538086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.21144104003906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.40135955810547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.76106262207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.15895080566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.13123321533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.98556137084961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.10517501831055, \"water_flow\": 1537.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.371925354003906, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.33905029296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.373046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.02698516845703, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.83935546875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.51611328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6613311767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.035400390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.27203369140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.8099365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.17236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.63870239257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.69097900390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 157.64791870117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.96127319335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.76963806152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.7698974609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.8927459716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.60214233398438, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.37110900878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.75540161132812, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.44439697265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0427703857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.94903564453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.32945251464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.3614501953125, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.56346130371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6337127685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.32176208496094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.26107788085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1615753173828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.34632873535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4681854248047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.36497497558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.24722290039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.02919006347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.51455688476562, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4064178466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.01058959960938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.19647979736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.6954116821289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.93498229980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.92195892333984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.2001953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.45806121826172, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.41841125488281, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.70177459716797, \"water_flow\": 134.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.94752502441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.49412536621094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.17211151123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.13884735107422, \"water_flow\": 2190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.19178771972656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.95453643798828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.14065551757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.97875213623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.86661529541016, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.44231414794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.8183822631836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.44054412841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.23065185546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.48529815673828, \"water_flow\": 917.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.94355773925781, \"water_flow\": 807.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1335678100586, \"water_flow\": 805.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.68329620361328, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.24920654296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.92861938476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.1916961669922, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.622802734375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.53778076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.22381591796875, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.92535400390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.39901733398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.29835510253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.68116760253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.39268493652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.23789978027344, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.422607421875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.678466796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.80728149414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.14697265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.76336669921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.55471801757812, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.93856811523438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.97921752929688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.78475952148438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.9991455078125, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.9834442138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.35671997070312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.082633018493652, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.198758125305176, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.568858623504639, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.888961315155029, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.309158325195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.300633430480957, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.18266487121582, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.677966117858887, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.214093208312988, \"water_flow\": 1918.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.830047607421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.196407318115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.573243141174316, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.889333724975586, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.747105598449707, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.055663108825684, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.958630561828613, \"water_flow\": 147.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.841665267944336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.922672271728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.57408332824707, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.56660270690918, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.489988327026367, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.48158836364746, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.30188751220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.81044006347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.278106689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.844913482666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.28004455566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.569644927978516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.69449234008789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.109962463378906, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.94126892089844, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.449066162109375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.834468841552734, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.79636001586914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.19628143310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.99392700195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.20833206176758, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.93241882324219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.60338592529297, \"water_flow\": 902.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.532066345214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.67484664916992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.703487396240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.44982147216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.74522399902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.12332153320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.16767120361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.07475280761719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.875431060791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.66227340698242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.38875961303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.99079513549805, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.99290466308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.61476135253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.17925262451172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.183837890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.35326385498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.50956726074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.76849365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.24005126953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.9109878540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.3843994140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.99491119384766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.83201599121094, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.60089874267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.73777770996094, \"water_flow\": 135.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.5967788696289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.24707794189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.87664031982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.8901138305664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.2157211303711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.98052215576172, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.17871856689453, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.57358169555664, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.14881134033203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.38602828979492, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.142723083496094, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.57658386230469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.008243560791016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.4721794128418, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.68798065185547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.47843170166016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.97281646728516, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.54957580566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.19298553466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.69091033935547, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.84949493408203, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8709487915039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.79118347167969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.98062896728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.2398910522461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.8729248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.37295532226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4187240600586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.10647583007812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.17771911621094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.60003662109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.36524963378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4629669189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.02349090576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.44104766845703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.03945922851562, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.22154998779297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.74730682373047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.01252746582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.7299575805664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.616798400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07496643066406, \"water_flow\": 1526.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05004119873047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05034637451172, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06608200073242, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.93363952636719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.342498779296875, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.9029541015625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.4008560180664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.43746948242188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.27537536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.97836303710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.33460998535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.53424072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.67405700683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.75924682617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.49729919433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.53848266601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.27194213867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.6636199951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.49346923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.93223571777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.07730102539062, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.03472900390625, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.29177856445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.06173706054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.72882080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.30300903320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.38967895507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.49264526367188, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.62228393554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.112060546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.25498962402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.3430633544922, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.79611206054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5441436767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4991455078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1012725830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.299072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.13636779785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.8160400390625, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.72972106933594, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5474624633789, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.14366149902344, \"water_flow\": 89.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.07723236083984, \"water_flow\": 94.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.93272399902344, \"water_flow\": 99.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.80885314941406, \"water_flow\": 121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.2696762084961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.68193054199219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.10871887207031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.85972595214844, \"water_flow\": 140.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.62508392333984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.10648345947266, \"water_flow\": 2235.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.01265716552734, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.88555145263672, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.80604553222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.69145202636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.9770278930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.77325439453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.09210968017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.9248046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.18590545654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.41413116455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.32797241210938, \"water_flow\": 99.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.60539245605469, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.41748046875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.48332977294922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7619171142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.21807861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.44287109375, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.67124938964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5369415283203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.83633422851562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.53076171875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.73524475097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.68673706054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.39305114746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.171142578125, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.41151428222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.40509033203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.99728393554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.37515258789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.37338256835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.2885284423828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.01133728027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.96189880371094, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.57070922851562, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.384765625, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.18463134765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.35812377929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.61325073242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.748248100280762, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.66557502746582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.468536853790283, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.820269584655762, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.385855674743652, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.079255104064941, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.645757675170898, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.330126762390137, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.0834808349609375, \"water_flow\": 1924.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.473666667938232, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.469016075134277, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.21087646484375, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.499028205871582, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.005378723144531, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.967411041259766, \"water_flow\": 148.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.977422714233398, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.763041496276855, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.245262145996094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.088478088378906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.90604591369629, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.124319076538086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.181976318359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.38523292541504, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.489837646484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.64815902709961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.732295989990234, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.31588363647461, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.426658630371094, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.115570068359375, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.713226318359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.06639862060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.74091720581055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.9150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.11894989013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.64443588256836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.14165496826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.265846252441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.343597412109375, \"water_flow\": 908.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.297489166259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.827842712402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.60226058959961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.441307067871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.66210174560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.11036682128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.11251068115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.33797454833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.78874206542969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.5478630065918, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.51913070678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.298179626464844, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.786277770996094, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.514198303222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.88533401489258, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.20806121826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.71633911132812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.18282318115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.85134887695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.38031005859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.6082992553711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.12409210205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.35315704345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.77959442138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.19784545898438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.39461517333984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.50659942626953, \"water_flow\": 140.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6704330444336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.49427795410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.186767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.55191040039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.79210662841797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.46890258789062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.046390533447266, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.78954315185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.585227966308594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.793128967285156, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.06367874145508, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.716270446777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.16191101074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.69449615478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.4084243774414, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.2442855834961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.87599182128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.08023071289062, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.39229583740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.6827163696289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.40801239013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.59264373779297, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.89119720458984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.40221405029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9449234008789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.94972229003906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.30110168457031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.1172103881836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.00869750976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.11247253417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.05748748779297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.704345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.523681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.95484924316406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.10904693603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.12886810302734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.017578125, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.30558776855469, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.87662506103516, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.40211486816406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.868160247802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05838394165039, \"water_flow\": 1510.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.13999557495117, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.533546447753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.054935455322266, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.7686882019043, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.36138153076172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.62239074707031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.93011474609375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.57460021972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.1531219482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.34890747070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.005615234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.23837280273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.19912719726562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.46102905273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.26197814941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.5999755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.05361938476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.48092651367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.75216674804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.41017150878906, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.83309936523438, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5037384033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.65692138671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.8737335205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.67681884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.45518493652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0775146484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.93341064453125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9635467529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.35560607910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.8058319091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.21871948242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.09056091308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4859619140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.61573791503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4717559814453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5313262939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.05799865722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.76898193359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.52085876464844, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.50637817382812, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.45912170410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.99819946289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.13875579833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.65919494628906, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.40760040283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.33522033691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.7453842163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.5363540649414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.81352233886719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.68309020996094, \"water_flow\": 2379.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8725357055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.86912536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.25440216064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.81171417236328, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.89366149902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.95936584472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.3094482421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.32069396972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.25018310546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.43494415283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.18154907226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.82565307617188, \"water_flow\": 95.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.99433135986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.72626495361328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.89724731445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0885467529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.02667236328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.440673828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.01683044433594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.67201232910156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.35057067871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.649169921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.76441955566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.5889129638672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.2200164794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7994842529297, \"water_flow\": 91.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.2621612548828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7648162841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.3347625732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.56494140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.18653869628906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.32704162597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.3163299560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.2716064453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.98594665527344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.57138061523438, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.1399688720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 159.640380859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 163.1527862548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.294124603271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.468605041503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.792352676391602, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.2111711502075195, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.260942459106445, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.909585475921631, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.266899585723877, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.263094902038574, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.243251800537109, \"water_flow\": 1928.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.275510787963867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.183485507965088, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.924925804138184, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.169027328491211, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.68640422821045, \"water_flow\": 149.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.296540260314941, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.270127296447754, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.678815841674805, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.812514305114746, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.6913480758667, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.261384963989258, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.606611251831055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.228757858276367, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.55587387084961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.441926956176758, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.83423614501953, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.89834976196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.06440353393555, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.72917556762695, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.60179901123047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.67897033691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.505428314208984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.298152923583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.56587219238281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.39524459838867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.396629333496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.83171844482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.25270462036133, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.13790512084961, \"water_flow\": 926.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.27104949951172, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.69933319091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.36539840698242, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.33174514770508, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.113548278808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.00494384765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.36656951904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.91227722167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.43998718261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.31327819824219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.305320739746094, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.57493591308594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.433128356933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.238121032714844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.716758728027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.49763870239258, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.4774169921875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.78868103027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.10909271240234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.275146484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.62039184570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.7516860961914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.28707122802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.09610748291016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.40719604492188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.67660522460938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.4849853515625, \"water_flow\": 149.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.61717224121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.6799087524414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.45613098144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.51569366455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.66726684570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.56068420410156, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.0428695678711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.88816833496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.75626373291016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.03092956542969, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.45635986328125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.99087524414062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.09691619873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.40971374511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.78041076660156, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.05109405517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.0656967163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.33318328857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.32744598388672, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.63088989257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.22988891601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.41934204101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.69353485107422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.10326385498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.22502899169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.98944091796875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.89827728271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.88085174560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0344009399414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.79761505126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.39612579345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.88256072998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.63267517089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.56388092041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.97266387939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.01595306396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.25038146972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.02439880371094, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.58560180664062, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.6531982421875, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.851234436035156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05000305175781, \"water_flow\": 1498.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.395904541015625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.337059020996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.13322067260742, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.13139724731445, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.54929733276367, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.1178092956543, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.00799560546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.59359741210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5270538330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6620330810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.05303955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5371551513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.23631286621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.20370483398438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.7042999267578, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.72030639648438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.8378143310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.53802490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.13136291503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.71875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.6485137939453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.90016174316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.33563232421875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0538330078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.09783935546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.59410095214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.814697265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.23162841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.9484405517578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.33131408691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.21136474609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.87281799316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1814422607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.16879272460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.44371032714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.454833984375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.05824279785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.33192443847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.12998962402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9024658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6952362060547, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.91110229492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0780792236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7257080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.99028015136719, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.798828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6168975830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.11717224121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.3332061767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.57923889160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.12828826904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.49942016601562, \"water_flow\": 2383.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.89350891113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.98596954345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.08305358886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.85084533691406, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.49530029296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.3349838256836, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.15150451660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.94710540771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.1798095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.31011962890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.9532470703125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.45233917236328, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.2032470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.32266235351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1370086669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.81219482421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5661163330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.4408416748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.06190490722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.77760314941406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5305938720703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.4597625732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.10382080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.2489776611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.8770294189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.50204467773438, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7544708251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.73263549804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.82662963867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.10850524902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.53634643554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.2206268310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.44781494140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.91571044921875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.47462463378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.06361389160156, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.9912567138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.71568298339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.54527282714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.111324310302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.329107284545898, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.168949604034424, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.520622730255127, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.121780395507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.780428886413574, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.164958477020264, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.945114612579346, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.8003034591674805, \"water_flow\": 1933.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.98865270614624, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.254824638366699, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.558295249938965, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.900712966918945, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.281026840209961, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.78637409210205, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.462705612182617, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.09239673614502, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.638463973999023, \"water_flow\": 1730.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.724804878234863, \"water_flow\": 1717.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.664244651794434, \"water_flow\": 1709.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.665356636047363, \"water_flow\": 1703.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.033985137939453, \"water_flow\": 1698.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.27416229248047, \"water_flow\": 1694.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.62946128845215, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.42123794555664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.11125946044922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.52151870727539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.868133544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.192176818847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.433963775634766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.51538848876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.1248779296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.8598518371582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.02568435668945, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.05139923095703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.18037033081055, \"water_flow\": 939.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.4430046081543, \"water_flow\": 931.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.55234146118164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.472049713134766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.555091857910156, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.677242279052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.62686538696289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.00188446044922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.34725570678711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.5527458190918, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.14999771118164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.44839477539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.85422134399414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.314910888671875, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.60973358154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.33476638793945, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.899635314941406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.25212860107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.21322250366211, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.5469856262207, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.0574722290039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.34822845458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.41778564453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.19688415527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.3399887084961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.30072021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.0706558227539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.3407211303711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.21479797363281, \"water_flow\": 157.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.66547393798828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.66625213623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.78594207763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.52945709228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.97229766845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.9970474243164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.79779052734375, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.49931335449219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.47107696533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.35147094726562, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.88440704345703, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.07769775390625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.30065155029297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.03488159179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.21910095214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.857177734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.73577117919922, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.53726196289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.15530395507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.69235229492188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.05258178710938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.34703063964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.0382308959961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.37517547607422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.35431671142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.75660705566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.87711334228516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.38221740722656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.07141876220703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.43856048583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.47694396972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.07920837402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.02975463867188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.4355697631836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.83405303955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.7712631225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.95638275146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2956771850586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.45111083984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.24761199951172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.74636459350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07828903198242, \"water_flow\": 1486.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05084228515625, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0864143371582, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.279876708984375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.66718292236328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.12914276123047, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.13966369628906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.246826171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9423065185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.62338256835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.63272094726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.44528198242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.69651794433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.99432373046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.84552001953125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.92506408691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.07199096679688, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.65216064453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.8046112060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.62686157226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.70028686523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.20352172851562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.9464874267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7728729248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.26988220214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.81089782714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.05726623535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.2222137451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.8180389404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.5701904296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.64959716796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.62213134765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.29054260253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.0233917236328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.53672790527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.86705017089844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2431640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1345672607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.62274169921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.7378692626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.8002166748047, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.43312072753906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.03048706054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.585693359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.6029510498047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.7368927001953, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2479705810547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.15089416503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.93968200683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.14544677734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.70912170410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.58170318603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.35042572021484, \"water_flow\": 2387.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.11616516113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.51124572753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.30638122558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.18682861328125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.47633361816406, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.69918823242188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.11534118652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.64330291748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.52530670166016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.66422271728516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.09616088867188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.44239807128906, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.75774383544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.59632873535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.14263916015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.74952697753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.24644470214844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.51918029785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.21922302246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.90260314941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8312530517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.49575805664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.52975463867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.90682983398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5215301513672, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.72862243652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.24801635742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.1403045654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.3553466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.29684448242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.51834106445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.8957061767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.67625427246094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.29356384277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.58114624023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.18585205078125, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.93287658691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.8112335205078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 158.53709411621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.30279541015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.476706504821777, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.964547634124756, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.539992809295654, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.288426399230957, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.558265686035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.182303428649902, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.886240482330322, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.365260601043701, \"water_flow\": 1965.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.856455326080322, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.103320121765137, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.2812628746032715, \"water_flow\": 151.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.399555206298828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.596705913543701, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.899747371673584, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.71868371963501, \"water_flow\": 1742.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.108917236328125, \"water_flow\": 1734.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.038304328918457, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.873888969421387, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.61142349243164, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.511127471923828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.07436752319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.673336029052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.53569793701172, \"water_flow\": 1647.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.358692169189453, \"water_flow\": 1639.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.250728607177734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.047183990478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.0729866027832, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.106689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.93568801879883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.62617874145508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.13842010498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.847511291503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.43088150024414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.241336822509766, \"water_flow\": 944.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.37352752685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.73817825317383, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.847450256347656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.289031982421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.679386138916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.34782791137695, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.413673400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.479522705078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.31639099121094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.67634582519531, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.87961959838867, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.53888702392578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.08561706542969, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.294219970703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.16096496582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.60129165649414, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.12455368041992, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.50065612792969, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.9155387878418, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.39380645751953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.55989456176758, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.90678405761719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.84797668457031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.5884017944336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.37745666503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.11595916748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.6097412109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.16303253173828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.15081024169922, \"water_flow\": 165.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.47217559814453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.41239166259766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.65789031982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.8431625366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.95655822753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.61872100830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.16120910644531, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.18304443359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.17976379394531, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.38483428955078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.75361633300781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.83383178710938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.38919830322266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.9847412109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.80330657958984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.3512954711914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.28179931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.15352630615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.88663482666016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.33399200439453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.56649017333984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.75413513183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.00213623046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.03573608398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.50480651855469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.19766998291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.32498931884766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.4586181640625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.11209869384766, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.62123107910156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.0315933227539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.16947174072266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.28517150878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.33212280273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.83690643310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.6698226928711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.88818359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.57552337646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.73773193359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.9004135131836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.78190994262695, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.063167572021484, \"water_flow\": 1437.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.27322006225586, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.997623443603516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.34599304199219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.78325653076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.7091827392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.35635375976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.68655395507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.01148986816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9985809326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.06375122070312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.28330993652344, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.05856323242188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2269287109375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.9095001220703, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.72206115722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.432861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.3672332763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.48712158203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.560546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8677520751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.28433227539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.48965454101562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.88536071777344, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.9196014404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.9724884033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.1199951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.31451416015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.33164978027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.82806396484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.3376007080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.1092987060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.80722045898438, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.4381561279297, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.0028076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.6578369140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.26629638671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.80331420898438, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.87208557128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.12844848632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.48114013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7666778564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.81883239746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.63534545898438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7136993408203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.44163513183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.96119689941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.51129150390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2027130126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.63627624511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.69344329833984, \"water_flow\": 2394.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.7991943359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.19466400146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0140151977539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.88391876220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.41365814208984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.7708969116211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.00350189208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.36206817626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.58475494384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9739761352539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.03974151611328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.81453704833984, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.16739654541016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.74906921386719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8807830810547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6270294189453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.49681091308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.26856994628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.94395446777344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.40283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.3685760498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.8205108642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.0251007080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.11795043945312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.42796325683594, \"water_flow\": 109.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.6708221435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.48553466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.37095642089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.26158142089844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.57843017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.8517608642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.17918395996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.89041137695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.14678955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.8793487548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5897674560547, \"water_flow\": 90.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.1396942138672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.9951171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.9470977783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.205081939697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.376991271972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.850011348724365, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.594353675842285, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.1062726974487305, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.229066848754883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.225069999694824, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.896073818206787, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.110834121704102, \"water_flow\": 1973.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.638545513153076, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.009479999542236, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.237393856048584, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.880497932434082, \"water_flow\": 1914.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.8181471824646, \"water_flow\": 1749.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.440579414367676, \"water_flow\": 1746.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.505741119384766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.553000450134277, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.342365264892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.828380584716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.139774322509766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.10394287109375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.47001647949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.860897064208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.785484313964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.34408950805664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.90020179748535, \"water_flow\": 1635.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.940847396850586, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.16752624511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.09505081176758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.07176971435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.38871765136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.1200065612793, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.9990119934082, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.97139358520508, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.137569427490234, \"water_flow\": 949.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.03425216674805, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.022705078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.553165435791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.07047653198242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.55359649658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.914306640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.77278137207031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.99628829956055, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.82311248779297, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.71153259277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.901554107666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.91447448730469, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.567527770996094, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.88287353515625, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.801212310791016, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.320396423339844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.76201629638672, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.13140106201172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.80935287475586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.318416595458984, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.892024993896484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.96677780151367, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.5779800415039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.55864715576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.20856475830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.53598022460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.16127014160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.85487365722656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.35242462158203, \"water_flow\": 173.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.73863220214844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.71656799316406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.58366394042969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.11447143554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.077392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.38394927978516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.43743896484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.652587890625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.39627075195312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.98680877685547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.39630889892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.66109466552734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.2224349975586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.56390380859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.53634643554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.0149917602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.01760864257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.33086395263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.12874603271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.37427520751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.30355072021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.1384048461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.33596801757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.78378295898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.77507781982422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.91805267333984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.19679260253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.78864288330078, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.18286895751953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.56864166259766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.23395538330078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.30711364746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.1578598022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.00800323486328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.36432647705078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.50981140136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.77810668945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.52645874023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.01770782470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.89180755615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.172847747802734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05160140991211, \"water_flow\": 1429.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05073928833008, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.15889358520508, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.206268310546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.61746215820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.24567413330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.94827270507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.16567993164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.86595153808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.1688690185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8112030029297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.32308959960938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.78123474121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.0705108642578, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.52699279785156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.40147399902344, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.036376953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.7145233154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.9986572265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.20436096191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.87774658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.3497772216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0452117919922, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.44381713867188, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.54808044433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4431915283203, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.46731567382812, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.9820098876953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.64794921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.33419799804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.50985717773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.27252197265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.84727478027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7998809814453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.166748046875, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.04991149902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5239715576172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.08314514160156, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9389190673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.21092224121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.41029357910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.91038513183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.23980712890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7582550048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3332977294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.59201049804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.57415771484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.76904296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9251708984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.45310974121094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.10308837890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.2635498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.40802764892578, \"water_flow\": 2398.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.43441772460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.76541900634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.65736389160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.92594146728516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.37420654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.18806457519531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.06989288330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.76165771484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.22662353515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.1719970703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.59589385986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.48240661621094, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.3472671508789, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.35980224609375, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2095947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.19309997558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.61148071289062, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.6131591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.98434448242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.55233764648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.7979278564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.56748962402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.62127685546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.92959594726562, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.92178344726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.21253967285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.1812744140625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.67665100097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.36550903320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.49832153320312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.42709350585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.10267639160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.82379150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.9478302001953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.36654663085938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.33668518066406, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.43885803222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5128173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.98706340789795, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.140166282653809, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.645153999328613, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.233702659606934, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.631426811218262, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.514521598815918, \"water_flow\": 85.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.972952842712402, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.331332683563232, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.764373779296875, \"water_flow\": 3915.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.240611553192139, \"water_flow\": 1925.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.6666131019592285, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.595098495483398, \"water_flow\": 1919.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.1477227210998535, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.839179039001465, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.163520812988281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.885640144348145, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.5155611038208, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.143248558044434, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.881227493286133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.043701171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.45705795288086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.29191589355469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.16419982910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.375545501708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.50738525390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.714359283447266, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.97422790527344, \"water_flow\": 1611.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.325950622558594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07663345336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.69391632080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.18346405029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.43362045288086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.47919464111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.45515441894531, \"water_flow\": 954.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.4643440246582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.68852233886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.70026397705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.51311492919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.39497375488281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.76905822753906, \"water_flow\": 93.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.785675048828125, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.5035514831543, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.729286193847656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.29240798950195, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.8363265991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.22555541992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.90177536010742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.203922271728516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.64699172973633, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.1351432800293, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.30377960205078, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.554542541503906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.85091018676758, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.46443557739258, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.22566604614258, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.62996292114258, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.200439453125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.1219711303711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.17046356201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.1828384399414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.9653091430664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.11973571777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.41961669921875, \"water_flow\": 179.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.94023132324219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.69580841064453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.48121643066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.41564178466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.43358612060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.52950286865234, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.01172637939453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.54220581054688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.14945983886719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.87159729003906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.70553588867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.78949737548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.40699768066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.33493041992188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.92803192138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.25782775878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.1502685546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.5035171508789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.072021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.29573059082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.66846466064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.68788146972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.99887084960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.61945343017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.6561050415039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.93962097167969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.62264251708984, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.68329620361328, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.49867248535156, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.38887023925781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.27012634277344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.15360260009766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.34954833984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.80809783935547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.87764739990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.8659896850586, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.65524291992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.72838592529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.60971069335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.80078887939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.82975006103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.06776428222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05007553100586, \"water_flow\": 1421.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050025939941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.56735610961914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.17317581176758, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.25204467773438, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.92511749267578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.06040954589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.475341796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.2106170654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.37074279785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2598876953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.03965759277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.32945251464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.02981567382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.2892303466797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.69869995117188, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5096893310547, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.37838745117188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.43785095214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.17831420898438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.61007690429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.77865600585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.94895935058594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.61839294433594, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5829315185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5288543701172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.39804077148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.75790405273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.5021514892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.17623901367188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.3618621826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.58181762695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.15481567382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.23731994628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.30166625976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.128662109375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.58030700683594, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2811737060547, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.6923828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.66720581054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.98362731933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.49578857421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0220489501953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.24903869628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.27455139160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3717498779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.69223022460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.89324951171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.36627197265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.36871337890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.51702117919922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.39797973632812, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.91928100585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.76339721679688, \"water_flow\": 2401.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.69779968261719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.521728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.53717803955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.2589111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1450653076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.75567626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.39122009277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2098388671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.89364624023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.43592834472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.31393432617188, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.73773193359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.04983520507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.255859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.90371704101562, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3491973876953, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5134735107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.16409301757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.3789520263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.7453155517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.2697296142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.64678955078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.91940307617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.6768341064453, \"water_flow\": 116.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2241668701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.95164489746094, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.99749755859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.11016845703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.00059509277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.80462646484375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.98806762695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.67584228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9213104248047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9327850341797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2691650390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.56053161621094, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.08457946777344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.15679931640625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.070977210998535, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.208504676818848, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.647667407989502, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.230812072753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.513400554656982, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.648341178894043, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.677553176879883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.921456813812256, \"water_flow\": 3919.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.088812828063965, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.398670196533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.552275657653809, \"water_flow\": 1922.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.983763217926025, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.635965824127197, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.846853256225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.049089431762695, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.822704315185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.4652099609375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.237879753112793, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 17.49691390991211, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.875091552734375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.48709487915039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.35641860961914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.72719955444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.41756057739258, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.90924835205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.35466003417969, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.57111740112305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.0008430480957, \"water_flow\": 1610.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.197967529296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.95838165283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.743595123291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.5777587890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.21309280395508, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.00551223754883, \"water_flow\": 958.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.56377029418945, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.22796630859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.925811767578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.99115753173828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.47150421142578, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.486785888671875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.873878479003906, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.875484466552734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.95716094970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.81389617919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.63385772705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.75919342041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.16046905517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.45117950439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.4633674621582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.69794845581055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.90285110473633, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.161102294921875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.43706512451172, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.502994537353516, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.116695404052734, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.1434326171875, \"water_flow\": 219.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.79888153076172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.715301513671875, \"water_flow\": 206.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.53755187988281, \"water_flow\": 201.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.08609008789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.79867553710938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.98342895507812, \"water_flow\": 180.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.33375549316406, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.26335144042969, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.81983947753906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.42198181152344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.16078186035156, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.7112808227539, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.04219055175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.16506958007812, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.5824203491211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.65045928955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2911605834961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.62975311279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.09970092773438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.84912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.06146240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.58479309082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.62979125976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.62491607666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.2811050415039, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.8323974609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.92892456054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.27201080322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.44190979003906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.85748291015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.04722595214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.25103759765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.9125747680664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.0902099609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.6008071899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.39900970458984, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.99858856201172, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.40396118164062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.57872009277344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.579833984375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.0592041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.04824829101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.93230438232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.63506317138672, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.95333099365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.65185546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.64803314208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.14522552490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.67607879638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1407.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05152893066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.2231330871582, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.56346893310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.54570007324219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.8511962890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.27165222167969, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.34436798095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9859619140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.94195556640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3197479248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.14703369140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.47433471679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.72073364257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.63156127929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.50254821777344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2221221923828, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.63719177246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.08140563964844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.57174682617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.25657653808594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.6759033203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.39268493652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.3151092529297, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.43081665039062, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8546600341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8721923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.38681030273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.1217803955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.92678833007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.84097290039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.88726806640625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.85169982910156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.1732940673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.7232666015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.87730407714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.41737365722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4787139892578, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.77865600585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.76695251464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.3180389404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.98655700683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.81150817871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.61817932128906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.10324096679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.25857543945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.87200927734375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.5153350830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.81504821777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.64686584472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.55816650390625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.18893432617188, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.82511901855469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.5843276977539, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.57061004638672, \"water_flow\": 2405.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.62117767333984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.11273956298828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.95861053466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.87946319580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.54042053222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.56527709960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.05206298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5855255126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8064422607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.52699279785156, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.93983459472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.88712310791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.82870483398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.5817108154297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.8466339111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.10333251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.25567626953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.6680450439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.09228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.85638427734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.86178588867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.6851806640625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.69041442871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5693817138672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3883056640625, \"water_flow\": 124.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.1490936279297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.55699157714844, \"water_flow\": 141.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.27816772460938, \"water_flow\": 146.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.54258728027344, \"water_flow\": 177.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.94642639160156, \"water_flow\": 180.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0544891357422, \"water_flow\": 190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7010040283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.27999877929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.20761108398438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3805694580078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.17628479003906, \"water_flow\": 110.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.70652770996094, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.44879150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.30624008178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.372186660766602, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.603992938995361, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.080900192260742, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.665015697479248, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.099279403686523, \"water_flow\": 107.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.214609622955322, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.895262718200684, \"water_flow\": 3923.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.2850189208984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.767290115356445, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.92244815826416, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.938733100891113, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.179703235626221, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.503677845001221, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.899297714233398, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.647614479064941, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.463489532470703, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.480116844177246, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.275619506835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.13252639770508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.08332824707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.922515869140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.38875579833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.93734741210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.619850158691406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.92183303833008, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.96009063720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.94102478027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.24331283569336, \"water_flow\": 1606.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.722232818603516, \"water_flow\": 1589.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.615623474121094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.471073150634766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.344303131103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.805908203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.324710845947266, \"water_flow\": 963.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.81254959106445, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.64251708984375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.06050491333008, \"water_flow\": 102.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.7673454284668, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.87702941894531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.71248245239258, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.54549026489258, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.27610397338867, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.68396759033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.23910522460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.11978912353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.06338500976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.9816780090332, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.011016845703125, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.11518859863281, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.4796142578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.224369049072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.811954498291016, \"water_flow\": 260.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.35853576660156, \"water_flow\": 238.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.94873046875, \"water_flow\": 228.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.24699020385742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.67612075805664, \"water_flow\": 210.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.9634895324707, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.7694091796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.05450439453125, \"water_flow\": 196.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.0477066040039, \"water_flow\": 193.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.45551300048828, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.57445526123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.68836212158203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.88972473144531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.91267395019531, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.14816284179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.6886978149414, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.08350372314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.51431274414062, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.88001251220703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.53706359863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.39527130126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.84296417236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.8368911743164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.77473449707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.99088287353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.19921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.16368865966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.08012390136719, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.22151947021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.9867935180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.53752899169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1647720336914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.95867156982422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.26786804199219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.8490982055664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.4053955078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.59114074707031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.34370422363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.2940444946289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.1417007446289, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.5126724243164, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.25787353515625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.93800354003906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.31781005859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.36543273925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.81473541259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.98639678955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.32341003417969, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.47888946533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.03048706054688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.84516906738281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.561805725097656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 1385.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.053401947021484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.93074417114258, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.49299240112305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.37883758544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.13170623779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.19415283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.16564178466797, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.36148071289062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.65771484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2183074951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.55136108398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0719757080078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.52687072753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.37811279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.35821533203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.23733520507812, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7682647705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.5550994873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.76097106933594, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4517364501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.57810974121094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.93780517578125, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.3155059814453, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.21900939941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6473846435547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.52557373046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.04580688476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7175750732422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.14256286621094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.74989318847656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.28379821777344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.30064392089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 161.31747436523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 160.34083557128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.583740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.74488830566406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.3861541748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.46990966796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.20492553710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.01097106933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.41261291503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.4280242919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.16470336914062, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.3885040283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.7884979248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9012451171875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.3676300048828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.86561584472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.85391235351562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.96302032470703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.0008773803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.3390121459961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.11882019042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.57051849365234, \"water_flow\": 2429.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.58059692382812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.06021118164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.220458984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.21562957763672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.05097198486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.57630157470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0491180419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.90899658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.12679290771484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.46578216552734, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3935775756836, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.50678253173828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.8765106201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.71620178222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1182098388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0723114013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.14813232421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7844696044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.84288024902344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.06460571289062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3189697265625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.55892944335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.24099731445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.00340270996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.74911499023438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.7501678466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.92355346679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3045196533203, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.7599639892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.08285522460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.94537353515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4521942138672, \"water_flow\": 192.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.88241577148438, \"water_flow\": 195.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31190490722656, \"water_flow\": 199.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.07469940185547, \"water_flow\": 204.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.70124816894531, \"water_flow\": 122.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.60514831542969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.12689208984375, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.500677108764648, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.570676803588867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.753131866455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.228115081787109, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.989451885223389, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.803216934204102, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.892984390258789, \"water_flow\": 111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.366891384124756, \"water_flow\": 3926.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.2435760498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.750319480895996, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.845084190368652, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.799615383148193, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.11849308013916, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.4981608390808105, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.915440082550049, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.627129554748535, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.591779708862305, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.280282974243164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.228679656982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.02859878540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.569942474365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.56208801269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.31922912597656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.33743286132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.86453247070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.829166412353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.88432312011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.75353240966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.24840545654297, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.90651321411133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.47502136230469, \"water_flow\": 1580.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.36713790893555, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.59604263305664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.34170150756836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.097896575927734, \"water_flow\": 967.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.289833068847656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.728145599365234, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.35588836669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.11579513549805, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.34999084472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.727783203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.89021301269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.71693801879883, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.51971435546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.65045928955078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.98533630371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.40116119384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.05744171142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.27042007446289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.53186798095703, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.50819396972656, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.12285232543945, \"water_flow\": 266.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.993656158447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.46076583862305, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.3904914855957, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.37175369262695, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.61883544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.47614288330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.32498931884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.11984252929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.31106567382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.40751647949219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.7372055053711, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.97457122802734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.39041137695312, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.14906311035156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.34436798095703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.30345916748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.49463653564453, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.99820709228516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.0311050415039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.70459747314453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.78153991699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.27387237548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36160278320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.71047973632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.42918395996094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.2374038696289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.46619415283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.198486328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.48583984375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.59968566894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.92955017089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.94023895263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.82199096679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.22697448730469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.61559295654297, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.97534942626953, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.08744049072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.14324188232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.28825378417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.99006652832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.16431427001953, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.75330352783203, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.0674819946289, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.17027282714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.31563568115234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.38739013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.27666473388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.68567657470703, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.9610824584961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.27559661865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.6209716796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.6839599609375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0512809753418, \"water_flow\": 949.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 423.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.93887710571289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.80896759033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.068115234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.61550903320312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.31822967529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.53279876708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.92501831054688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.42381286621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.86680603027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.3946990966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.7751007080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.55674743652344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.70608520507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.59957885742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.30339813232422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.8850326538086, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.8338623046875, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.11227416992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.22950744628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.31695556640625, \"water_flow\": 101.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.98971557617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.2469482421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.85928344726562, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.89642333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.0297088623047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.29989624023438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.29637145996094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.51437377929688, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.60836791992188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.45826721191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 168.4403839111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 171.5608367919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 164.5330352783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.98159790039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.3503875732422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.8305206298828, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.9181671142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.52598571777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.37901306152344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.150146484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7754669189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5466766357422, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.86917114257812, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2831573486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.98748779296875, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.64845275878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9427490234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.49601745605469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.99214172363281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.17790222167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.02635192871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.95268249511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.09974670410156, \"water_flow\": 2435.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.29460906982422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.84130096435547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.88375091552734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.27764892578125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.09838104248047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.90674591064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.83907318115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.55526733398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.10321807861328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.63665771484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.92784118652344, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.41934204101562, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.41761016845703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.1339569091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8729705810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.3948516845703, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8837890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0548553466797, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.11927795410156, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.77127075195312, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.5667266845703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.10121154785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6877899169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.3956298828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.42971801757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.1342010498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.37643432617188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.73696899414062, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.72100830078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.32305908203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.2304229736328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.62840270996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.21705627441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.590087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.39117431640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.77324676513672, \"water_flow\": 205.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.6715087890625, \"water_flow\": 193.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6508950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0763397216797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.766740798950195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.720734596252441, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.067605018615723, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.571537971496582, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.138755798339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.894380569458008, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.563510417938232, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.485826015472412, \"water_flow\": 4041.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.982304573059082, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.536304950714111, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.64433479309082, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.704634189605713, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.079008102416992, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.46570348739624, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.925107955932617, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.74229621887207, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.0716552734375, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.796880722045898, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.51399040222168, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.05815887451172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.47801971435547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.92566680908203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.94527435302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.24163055419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.6156997680664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.48043441772461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.9541130065918, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.21787643432617, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.82622528076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.679420471191406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.705135345458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.91221237182617, \"water_flow\": 1569.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.32050323486328, \"water_flow\": 1492.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.49809265136719, \"water_flow\": 1491.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.87508010864258, \"water_flow\": 522.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.46368408203125, \"water_flow\": 108.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.75931167602539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.29094314575195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.48721694946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.00686645507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.46617126464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.10317993164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.42591857910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.884437561035156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.25776672363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.72945404052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.58864212036133, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.02351760864258, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.736854553222656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.310089111328125, \"water_flow\": 297.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.1387939453125, \"water_flow\": 269.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.015560150146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.67519760131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.47251510620117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.605743408203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.52574157714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.471927642822266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.39471435546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.2872543334961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.98468017578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.83396911621094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.95848083496094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.88033294677734, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.15071868896484, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.76223754882812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.55696105957031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.12208557128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.90483856201172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.38603973388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.37873077392578, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.2104263305664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.906005859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.7564468383789, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.9078598022461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.97981262207031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.99188995361328, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.52669525146484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.08858489990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.67396545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.10191345214844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.67557525634766, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.76762390136719, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.77338409423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.38473510742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.19984436035156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.04025268554688, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.97513580322266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.30133819580078, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.1282958984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.81948852539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.41883850097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.91021728515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.7287483215332, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.24372100830078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.18826293945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.41738891601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.4625015258789, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.2537841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.24488067626953, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.46175384521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.3155746459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.5008544921875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.61119842529297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.37062454223633, \"water_flow\": 914.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 422.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.173484802246094, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.14299392700195, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.13948059082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.32230377197266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.64028930664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.69134521484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.50467681884766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.66314697265625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.03036499023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.60693359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.658447265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.2016143798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.39219665527344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9688720703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.93875122070312, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.24781799316406, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6547088623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.12957763671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.97572326660156, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.7716827392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.63986206054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.2079315185547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.62115478515625, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.89686584472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.75497436523438, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.16030883789062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.49415588378906, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.70135498046875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.5579833984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.55929565429688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 162.8957977294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 165.86329650878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.4081573486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3271942138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.678955078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.3684539794922, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9870147705078, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.12721252441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9042510986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.41378784179688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.21446228027344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.8037872314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.80410766601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.10177612304688, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.249267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.29234313964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.76167297363281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.16319274902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.44261932373047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.63538360595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.84769439697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.67536926269531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.32320404052734, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.62854766845703, \"water_flow\": 2436.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.12459564208984, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.2933120727539, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.61036682128906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.17776489257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.00662994384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.14289855957031, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.2092056274414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.33271026611328, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.20858764648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.54368591308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.61817932128906, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.44215393066406, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9899139404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.72825622558594, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.48162841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.1204071044922, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.0452423095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.71240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.0815887451172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.67494201660156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.6912078857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.1719512939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.50152587890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.66244506835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.05926513671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.21157836914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.03846740722656, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.44888305664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.93960571289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.71530151367188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.78775024414062, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5178985595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.01210021972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.76365661621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.03165435791016, \"water_flow\": 400.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.07981872558594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509000.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.61764526367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.336167335510254, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.020577430725098, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.258363723754883, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.693936824798584, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.026878833770752, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.8208699226379395, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.490213394165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.998000621795654, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.239058494567871, \"water_flow\": 4046.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.592352867126465, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.327993869781494, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.516922473907471, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.950936794281006, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.4712910652160645, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.956756591796875, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.103231430053711, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.727682113647461, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.446928024291992, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.386445999145508, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.956472396850586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.155029296875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.72087097167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.25651550292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.32756805419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.27232360839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.06464385986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.09626770019531, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.8843994140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.61687469482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.003482818603516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.60139846801758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.13467788696289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.91165542602539, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.32359313964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.78977966308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.62366485595703, \"water_flow\": 407.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.51585006713867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.08611297607422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.36897277832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.1104736328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.77178192138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.81591796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.07090759277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.06156921386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.23552703857422, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.118019104003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.23808288574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.849525451660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.383399963378906, \"water_flow\": 303.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.42599105834961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.98695755004883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.56548309326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.480987548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.61186981201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.66379928588867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.602142333984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.45979309082031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.31436157226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.93570709228516, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.53704833984375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.3063735961914, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.15161895751953, \"water_flow\": 55.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.45333862304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.87461853027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.95670318603516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.60342407226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.19931030273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.64932250976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.59909057617188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.09668731689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.55888366699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.26725769042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.13768005371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.71914672851562, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.25908660888672, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.78068542480469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.72608184814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.54966735839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.14634704589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.05924987792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.123779296875, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.02728271484375, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.8678207397461, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.44792175292969, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.54509735107422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.02857208251953, \"water_flow\": 61.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.57730865478516, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.31570434570312, \"water_flow\": 94.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.53556823730469, \"water_flow\": 111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.72293853759766, \"water_flow\": 114.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.529449462890625, \"water_flow\": 118.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.63176727294922, \"water_flow\": 122.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.32979965209961, \"water_flow\": 207.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.20761489868164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.20140838623047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.355262756347656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.978172302246094, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.9600944519043, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.556339263916016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.50505065917969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.42708587646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.731990814208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07347869873047, \"water_flow\": 889.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 421.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050018310546875, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.50023651123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.49229431152344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.88508605957031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.87069702148438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.2585220336914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.79959106445312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.26763153076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2081756591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.7514877319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.10620880126953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.09706115722656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.92350006103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.02214813232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.76319122314453, \"water_flow\": 85.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.57672119140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.42808532714844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.96503448486328, \"water_flow\": 105.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.61399841308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5726776123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.15890502929688, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.668701171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.09642028808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.58868408203125, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.79385375976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.05894470214844, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.26097106933594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.65643310546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.66302490234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.21058654785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.99850463867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.23619079589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.02427673339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9547119140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4925079345703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.379150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.8867645263672, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.78952026367188, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5570526123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.54489135742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6544647216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0302734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.85568237304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.79585266113281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.34512329101562, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.52435302734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.54344940185547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.34893798828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.5184097290039, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.0427017211914, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.32398223876953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.86792755126953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.9135513305664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.04769897460938, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.38201141357422, \"water_flow\": 2437.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.49288940429688, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.53548431396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.49481201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.30342102050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.39472198486328, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.31639099121094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.88761138916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.58566284179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.74932098388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.01605987548828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.17965698242188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9319610595703, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1295928955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.70777893066406, \"water_flow\": 39.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5833282470703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.8258819580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.06985473632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.8008270263672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.05795288085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.15065002441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.00125122070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.39739990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.1448516845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.0812225341797, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.88528442382812, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.6110382080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.99842834472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.67881774902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.18682861328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.1426239013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.22950744628906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.74644470214844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.51266479492188, \"water_flow\": 403.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.7752456665039, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.7203369140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509050.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9922332763672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.416699409484863, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.821063041687012, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.638915061950684, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.957560062408447, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.445159912109375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.904506683349609, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.319420337677002, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.07504940032959, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.143997669219971, \"water_flow\": 4115.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.876607894897461, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.348688125610352, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.483484268188477, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.887320041656494, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.507102966308594, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.140142440795898, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.512091636657715, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.517374992370605, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.047852516174316, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.361026763916016, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.279008865356445, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.20524215698242, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.67155838012695, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.70765686035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.36145782470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.32225799560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.09822845458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.597862243652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.533573150634766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.67108917236328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.96971130371094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.597373962402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.259647369384766, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.00357437133789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.99053955078125, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.330204010009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.417964935302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.165157318115234, \"water_flow\": 405.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.89888000488281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.08257293701172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.06780242919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.98442077636719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.0634994506836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.66706085205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.14666748046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.6169548034668, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.174659729003906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.48896789550781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.17925262451172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.363162994384766, \"water_flow\": 311.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.6622314453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.35345458984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.715003967285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.35746765136719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.20906448364258, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.200130462646484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.280799865722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.27336883544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.21171569824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.21951293945312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.79804992675781, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.43697357177734, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.72824096679688, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.3533706665039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.39398193359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.03572845458984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.431640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.9745864868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.91755676269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.02039337158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.0228042602539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.50651550292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.8993148803711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.11788177490234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.47976684570312, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.16236877441406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.0659408569336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.119873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.63739776611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.85535430908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.82501220703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.15717315673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.8008041381836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.88270568847656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.56768798828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.0672607421875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.33599853515625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.15731048583984, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.19744873046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.5242919921875, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.52619171142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.7250747680664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.65592956542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.64122772216797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.36665725708008, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.06289291381836, \"water_flow\": 213.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.763450622558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.31727981567383, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.59284973144531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.06302261352539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.31156539916992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.6633071899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.89017105102539, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.3346061706543, \"water_flow\": 874.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 420.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.131954193115234, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.029056549072266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.59156799316406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.84706115722656, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.6446304321289, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.44549560546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.99810791015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.08623504638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.67078399658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.37153625488281, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.07086944580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.91936492919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.78715515136719, \"water_flow\": 270.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.32059478759766, \"water_flow\": 183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.35382843017578, \"water_flow\": 157.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.06755065917969, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.31856536865234, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.4992218017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.46408081054688, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3549346923828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9081268310547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.50222778320312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.0015411376953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.5179443359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.25885009765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.09628295898438, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.4410400390625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.5978240966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4004364013672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.65069580078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.73617553710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.865966796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.14376831054688, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.3334197998047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.38223266601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.99415588378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.200439453125, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.70912170410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.0270538330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.21495056152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.79556274414062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5577850341797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.21904754638672, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.1812515258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.22250366210938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.40438079833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.05912017822266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.84712982177734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.25249481201172, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.73770904541016, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.18659973144531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.82213592529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.41194152832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.7066879272461, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.63701629638672, \"water_flow\": 2438.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.58700561523438, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.80127716064453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.84480285644531, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.12992858886719, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.90892791748047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.86454010009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9817352294922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.70579528808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.17271423339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.8330535888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.60418701171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9653778076172, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5605010986328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.359619140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.11032104492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.20883178710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.51876831054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.45236206054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.9879913330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.4153594970703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.46189880371094, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.9962158203125, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.23861694335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.93150329589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.6759033203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.20323181152344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.8291015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.500244140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0693817138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.09495544433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.50749969482422, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.88221740722656, \"water_flow\": 418.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.71127319335938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.63986206054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509100.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.73109436035156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.509955406188965, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.237933158874512, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.33084487915039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.680146217346191, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.307090759277344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.4599103927612305, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.183032989501953, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.4206438064575195, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.518261909484863, \"water_flow\": 4167.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.247496604919434, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.291299343109131, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.361920356750488, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.943652629852295, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.643186569213867, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.75043773651123, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.38271713256836, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.899396896362305, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.972819328308105, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.765628814697266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.402393341064453, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.77120590209961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.83133316040039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.89710998535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.23307800292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.67259979248047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.18169403076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.71255111694336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.65005111694336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.27942657470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.58182144165039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.6099967956543, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.0198974609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.681270599365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.9315185546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.90990447998047, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.30926513671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.34583282470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.19327926635742, \"water_flow\": 397.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.64419937133789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.94192123413086, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.36812973022461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.37370300292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.141212463378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.28986740112305, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.42746353149414, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.151527404785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.14387893676758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.87407302856445, \"water_flow\": 322.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.586341857910156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.45341110229492, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.15098190307617, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.46161651611328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.924495697021484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.72819137573242, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.81653594970703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.843082427978516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.61397933959961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.6158332824707, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.7012939453125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.32573699951172, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.2024154663086, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.60889434814453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.68795776367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.91365814208984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.3852767944336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.98421478271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.34898376464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.15863037109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.03570556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.40255737304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.11229705810547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.80148315429688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.0346450805664, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.49363708496094, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.50556945800781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.65839385986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.27647399902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.55259704589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.68610382080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.22874450683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.47061157226562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.8895034790039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.40753173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.27367401123047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.91803741455078, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.80641174316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.77340698242188, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.35676574707031, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.10682678222656, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.96701049804688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.23587799072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.67874145507812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.16685485839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.93985748291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.01580810546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.466896057128906, \"water_flow\": 240.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.06665802001953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.424560546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.919586181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.53080749511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.848262786865234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.354793548583984, \"water_flow\": 855.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 419.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.07723617553711, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.798858642578125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.70632553100586, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.88589477539062, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.89166259765625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.18407440185547, \"water_flow\": 318.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.43620300292969, \"water_flow\": 313.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.28787994384766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.92839813232422, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.6470947265625, \"water_flow\": 289.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.46430969238281, \"water_flow\": 286.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.0916976928711, \"water_flow\": 283.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.95011138916016, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.42317962646484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.39248657226562, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.6653823852539, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.73633575439453, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.95367431640625, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.67005920410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.560302734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.15391540527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6044921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8130645751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.6305389404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2279815673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.2301483154297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.5270538330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.24307250976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.96401977539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.254638671875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.77296447753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.08282470703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.84158325195312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6039276123047, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.7334442138672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1152801513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.67384338378906, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.95376586914062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.26702880859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.27371215820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.91954040527344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.41907501220703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.44786834716797, \"water_flow\": 45.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.64796447753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.74311828613281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.71315002441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.83415222167969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.73307037353516, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.50585174560547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.66035461425781, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.60999298095703, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.27384185791016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.66799926757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.23877716064453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.64820861816406, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.386474609375, \"water_flow\": 2599.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.96017456054688, \"water_flow\": 135.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.49301147460938, \"water_flow\": 122.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.77943420410156, \"water_flow\": 93.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.94313049316406, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.41655731201172, \"water_flow\": 83.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.56124114990234, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.53785705566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.47293090820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1097412109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.2850799560547, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.62576293945312, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.47096252441406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.6691436767578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.9593048095703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.87657165527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.25656127929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.34217834472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.35475158691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.49917602539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.20274353027344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.02066040039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.9834747314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.1497344970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.2866973876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.7501220703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.66578674316406, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.25502014160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.81777954101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.36309814453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.75456237792969, \"water_flow\": 429.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.71215057373047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.35781860351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5272674560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509150.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.31463623046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.817207336425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.577978134155273, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.556233406066895, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.702869415283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.125968933105469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.086466789245605, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.238848686218262, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.173165321350098, \"water_flow\": 4190.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.8184814453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.18812370300293, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.037539482116699, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.234437465667725, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.069840431213379, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.910765647888184, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.640242576599121, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.472395896911621, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.048880577087402, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 16.711118698120117, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.035266876220703, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 25.559343338012695, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.58212661743164, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.65300750732422, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.29625701904297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.68733215332031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.55353546142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.01555252075195, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.6479377746582, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.14997100830078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.87507629394531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.32270812988281, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.98130798339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.27022171020508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.52696228027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.738311767578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.66423797607422, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.95994567871094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.265987396240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.72432327270508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.575111389160156, \"water_flow\": 387.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.848514556884766, \"water_flow\": 377.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.29316711425781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.398475646972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.262813568115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.40167236328125, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.78654861450195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.723182678222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.23112869262695, \"water_flow\": 325.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.62673568725586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.232032775878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.142581939697266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.860595703125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.06890106201172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.41842269897461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.0306510925293, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.18076705932617, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.15424728393555, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.916236877441406, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.98194885253906, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.04875183105469, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.98041534423828, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.50076293945312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.90106964111328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.07854461669922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.96734619140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.59556579589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.62479400634766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.21560668945312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.24996185302734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.72401428222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.20769500732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.12344360351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.5748062133789, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.13704681396484, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.09143829345703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.84764862060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.54733276367188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.92230987548828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.42205810546875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.79505157470703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.81945037841797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.27448272705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.2017822265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.3786392211914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.17325592041016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.94490051269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.85762023925781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.35523986816406, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.48735046386719, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.19637298583984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.6910629272461, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.45719146728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.62503051757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.62925720214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.229026794433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.15439987182617, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.752586364746094, \"water_flow\": 247.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.82228088378906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.646583557128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.95504379272461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.17815017700195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.28495788574219, \"water_flow\": 837.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050010681152344, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05000686645508, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.11491012573242, \"water_flow\": 418.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.43338394165039, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.74020004272461, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.95772171020508, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.7593765258789, \"water_flow\": 323.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.33895874023438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.41423034667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.87686920166016, \"water_flow\": 308.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.97847747802734, \"water_flow\": 290.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.82945251464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.48690795898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5199203491211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.4722671508789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.46478271484375, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.91487884521484, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.34996032714844, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.25662994384766, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.74951171875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.9181365966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.85423278808594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.28518676757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.8902130126953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.7674560546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.33656311035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3441162109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.70553588867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.8323211669922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.87728881835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.58721923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.15794372558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.05203247070312, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.27366638183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.21900939941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.79476928710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4315948486328, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.00221252441406, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.51663208007812, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.53692626953125, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0857696533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.42974853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.94596862792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.4111099243164, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.66670989990234, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.85492706298828, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.4732437133789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.44596862792969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.43929290771484, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.04515075683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.97705078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.46566772460938, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.17291259765625, \"water_flow\": 250.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.73550415039062, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.51400756835938, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.09687042236328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.71452331542969, \"water_flow\": 2618.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.84300994873047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.7902603149414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.33197021484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.29890441894531, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.9657974243164, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.8365478515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.61283874511719, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.0225067138672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.22662353515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.12049865722656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.77516174316406, \"water_flow\": 57.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.73512268066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.95457458496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.31581115722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.25665283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.1885986328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.17837524414062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.32672119140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.9547576904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.1538848876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.68601989746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.44400024414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.78514099121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.39035034179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.66542053222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.40330505371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.60501861572266, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.346923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.51939392089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.69290924072266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.26730346679688, \"water_flow\": 433.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.75906372070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7661590576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.04074096679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509200.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.91026306152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.507401466369629, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.031679153442383, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.239509582519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.291280746459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.574797630310059, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.174539566040039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.133015155792236, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.924516201019287, \"water_flow\": 4193.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.725766658782959, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.865991115570068, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.716882705688477, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.383828639984131, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.331295013427734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.600598335266113, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.731343269348145, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.928877830505371, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.407615661621094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.843292236328125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.36499786376953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.70741844177246, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.58028030395508, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.27355194091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.14019775390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.923805236816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.1915512084961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.53569793701172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.22190856933594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.00464630126953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.118431091308594, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.968528747558594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.5629997253418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.02947998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.02591323852539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.15970993041992, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.64805603027344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.83211135864258, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.169700622558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.38661193847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.18947219848633, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.07618713378906, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.47536087036133, \"water_flow\": 372.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.12323760986328, \"water_flow\": 367.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.05970001220703, \"water_flow\": 362.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.06562423706055, \"water_flow\": 348.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.933345794677734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.415122985839844, \"water_flow\": 338.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.1549186706543, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.85261917114258, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.12330627441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.71285629272461, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.25059127807617, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.57596969604492, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.95691680908203, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.47957229614258, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.27556228637695, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.11039352416992, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.96834182739258, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.76115798950195, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.1117935180664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.31673431396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.49443054199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.3262939453125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.72159576416016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.26360321044922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.4219741821289, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.88536071777344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.08100891113281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.00310516357422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.05364990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.65821075439453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.03404235839844, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.42859649658203, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.15785217285156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.18424987792969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.36044311523438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.63175964355469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.6714096069336, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.89415740966797, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.5126953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.80075073242188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.67426300048828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.38232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.10762023925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.2683334350586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.64376068115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.22184753417969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.90000915527344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.96368408203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.66363525390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.96166229248047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.25804138183594, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.91266632080078, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.84696960449219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.2154426574707, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.747955322265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.340614318847656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.85005187988281, \"water_flow\": 255.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.34575271606445, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.49839401245117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.77411651611328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 820.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.06159210205078, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.68859100341797, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.326175689697266, \"water_flow\": 417.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.95266342163086, \"water_flow\": 339.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.12652587890625, \"water_flow\": 328.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.6821060180664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.48687744140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.26224517822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.75759887695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.42974853515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.98370361328125, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.39835357666016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.6908187866211, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29308319091797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.85710906982422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.67809295654297, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.83979034423828, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.23348999023438, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1734161376953, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.53195190429688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.49876403808594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.4387664794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.69476318359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.33973693847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.66004943847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.68206787109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.50497436523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.3232421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.79522705078125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.20521545410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.3724365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6203155517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.5193328857422, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.51385498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.60150146484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.83517456054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.04135131835938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.82859802246094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.87388610839844, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.10440063476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.99365234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.96671295166016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.69966125488281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.35369110107422, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.34990692138672, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.58648681640625, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.43165588378906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.64193725585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.16853332519531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.71662139892578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.51703643798828, \"water_flow\": 215.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.87403869628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.90323638916016, \"water_flow\": 251.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.7862777709961, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.89947509765625, \"water_flow\": 2631.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.9610824584961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.32925415039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.42604064941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.17940521240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.853515625, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.02454376220703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.94215393066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.24632263183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.48229217529297, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9761962890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.90374755859375, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.2138671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.5663604736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.5088653564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.78253173828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 156.5425262451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.19129943847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.26519775390625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.70291137695312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.691650390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.157470703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 155.2580108642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.3210906982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 153.44837951660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.19467163085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5447540283203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.55017852783203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.55712127685547, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.18025207519531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.07640075683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.36711120605469, \"water_flow\": 437.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.05178833007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.20547485351562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.80450439453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4839630126953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509250.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9084014892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.742650985717773, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.446090698242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.001446723937988, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.29154109954834, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.346942901611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.590437412261963, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.21290922164917, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.847740650177002, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.312100410461426, \"water_flow\": 4194.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.376486301422119, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.45701265335083, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.518159866333008, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.6719512939453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.610712051391602, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.079791069030762, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.987320899963379, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 27.67397117614746, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.95709228515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.815977096557617, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.05755615234375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.45109176635742, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.58259201049805, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.8096923828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.98658752441406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.071624755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.04613494873047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.129638671875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.72421646118164, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.808570861816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.200965881347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.49637985229492, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.27198791503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.16095733642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.980186462402344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.529178619384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.28168869018555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.807594299316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.464054107666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.06053161621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.019981384277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.981666564941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.144222259521484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.211936950683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.00241470336914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.76620864868164, \"water_flow\": 344.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.754608154296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.03511047363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.15959548950195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.81168746948242, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.24507522583008, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.72182083129883, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.13322067260742, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.412315368652344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.836116790771484, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.33599090576172, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.25120162963867, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.95029067993164, \"water_flow\": 74.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.66502380371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.84505844116211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.80171203613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.98719024658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.7395248413086, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.69217681884766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.00131225585938, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.5124282836914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.56153106689453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.65740966796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.83578491210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.66461181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.88156127929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.05765533447266, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.06355285644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.2247543334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.2287826538086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.75244903564453, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.90328216552734, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.87505340576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.12554931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.78235626220703, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.34204864501953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.96894073486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.4905242919922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.79212951660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.76184844970703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.36549377441406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.41991424560547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.11035919189453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.95196533203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.2104721069336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.16793823242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.36378479003906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.27249145507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.55632400512695, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.22694778442383, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.26116180419922, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.7108268737793, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.89802932739258, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.2137336730957, \"water_flow\": 256.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05079650878906, \"water_flow\": 458.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 490.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 326.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.15695571899414, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.40933609008789, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.977874755859375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.47156524658203, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.61833572387695, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.00761413574219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.36235046386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.99906158447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.85210418701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.00502014160156, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.83769226074219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.33804321289062, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.93245697021484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.0763931274414, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.47044372558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.2459716796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.74151611328125, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.05091857910156, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.21905517578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.91659545898438, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.24008178710938, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.73402404785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.31068420410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.38417053222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.59312438964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.75064086914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.19354248046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.34393310546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.526123046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.02337646484375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.92483520507812, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.99188232421875, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.07171630859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.4724884033203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.71241760253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4564666748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.5673370361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.121826171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3114776611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.11947631835938, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.69094848632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.68003845214844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.09577178955078, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.4460220336914, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.510498046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.41932678222656, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.41741180419922, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.8251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.56584930419922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.50383758544922, \"water_flow\": 214.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.5127944946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.05268859863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.21131896972656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.79624938964844, \"water_flow\": 2894.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.24553680419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.74982452392578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.0281753540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.06529998779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.17318725585938, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.56612396240234, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.63308715820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.06436157226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.60269165039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.97586059570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.78599548339844, \"water_flow\": 71.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.32298278808594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.8665008544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.85470581054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.2630157470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.3307342529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 154.50396728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.90814208984375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.3377685546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.95005798339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.6028289794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.2193603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.4388427734375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.8622589111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.4243621826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.38331604003906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.17118835449219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.154541015625, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.04039001464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.59243774414062, \"water_flow\": 442.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.6307144165039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.85645294189453, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.79339599609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.19409942626953, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.82841491699219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509300.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.43798828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.201292037963867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.845589637756348, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.561810493469238, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.13625717163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.157376289367676, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.234655857086182, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.987308025360107, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.069091320037842, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.4587178230285645, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.422290325164795, \"water_flow\": 4195.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.138711929321289, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.540987968444824, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.432803153991699, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.422661781311035, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.497326850891113, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 21.172452926635742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.32375717163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.75782775878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.90226745605469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.4997444152832, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.92685317993164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.488861083984375, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.47960662841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.03810501098633, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.804840087890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.27381896972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.75181579589844, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.30983352661133, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.17655944824219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.10409927368164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.97003173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.05306625366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.005733489990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.44413375854492, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.568572998046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.81623458862305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.8692741394043, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.34830093383789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.93928527832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.198081970214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.15078353881836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.432464599609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.03595733642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.712589263916016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.99659729003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.5342903137207, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.71480941772461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.024085998535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.41676712036133, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.93215560913086, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.25709915161133, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.581241607666016, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.98506546020508, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.39524459838867, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.85596466064453, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.752845764160156, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.373626708984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.40359878540039, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.20002365112305, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.5899658203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.22096252441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.72822570800781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.544071197509766, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.7940788269043, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.21366882324219, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.37124633789062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.81309509277344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.53480529785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.0546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.84322357177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.58033752441406, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.18675231933594, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.510986328125, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.85548400878906, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.3867416381836, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.12820434570312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.80380249023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.26734924316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.45079803466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.70267486572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.4140853881836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.02285766601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4816131591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.52406311035156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.27496337890625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.00585174560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.20713806152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.77300262451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.68562316894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.24005889892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.59366607666016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.430755615234375, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.269710540771484, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.71137619018555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.96255111694336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.44021987915039, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.134742736816406, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.34077835083008, \"water_flow\": 200.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.056034088134766, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 325.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05745315551758, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05363845825195, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0543327331543, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.359703063964844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.01588821411133, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.088165283203125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.318519592285156, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.63590240478516, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.6082992553711, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.1004409790039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.28791046142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.85768127441406, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.43177795410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.46051788330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.33030700683594, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.67974090576172, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.48468780517578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.26565551757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.05825805664062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0637664794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.2093505859375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4420928955078, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.64230346679688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.35984802246094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3083953857422, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.31460571289062, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.21995544433594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.85154724121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.77601623535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.6435546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.21298217773438, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.73558044433594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.23275756835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.22470092773438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.93051147460938, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.5005645751953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.1687774658203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.12033081054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.73057556152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.9480438232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.36048889160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.6841278076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.51898193359375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.05897521972656, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.07037353515625, \"water_flow\": 70.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.04556274414062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.27998352050781, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.93730926513672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.38297271728516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.16417694091797, \"water_flow\": 136.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.60084533691406, \"water_flow\": 188.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.48199462890625, \"water_flow\": 211.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.73149108886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.53895568847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.73929595947266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.81689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.6466064453125, \"water_flow\": 2901.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.97415161132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.62781524658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.1658935546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.92764282226562, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.38591003417969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.66895294189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.201171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.6892852783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.89625549316406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.09129333496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.9557342529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.11920166015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.62379455566406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.24664306640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.22286987304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.11851501464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.14938354492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.669921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.05093383789062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.70285034179688, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.3345489501953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.5613250732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7771453857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.7406005859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.06182861328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.99466705322266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.23158264160156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.9546127319336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.50272369384766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.56249237060547, \"water_flow\": 465.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.93408203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.04251098632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.38492584228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.67864990234375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.2587890625, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.88778686523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509350.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.19412231445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.4675874710083, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.237887382507324, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.10542106628418, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.112584114074707, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.796591758728027, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.68485164642334, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.034192085266113, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.597316265106201, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.464134693145752, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.322333335876465, \"water_flow\": 4303.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.0734429359436035, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.423727035522461, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.419619083404541, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.402283668518066, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.995794296264648, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.917890548706055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.78419494628906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.736759185791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.7776985168457, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.321014404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.068363189697266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.001953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.44330596923828, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.63844299316406, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.127925872802734, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.419918060302734, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.48586654663086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.831974029541016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.48767852783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.57402801513672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.39385223388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.43368530273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.969844818115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.60454177856445, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.25152587890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.3305778503418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.01936340332031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.109886169433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.780059814453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.69195556640625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.05040740966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.210792541503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.50629425048828, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.834571838378906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.62942123413086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.983211517333984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.52332305908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.941200256347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.84329605102539, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.21424865722656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.642486572265625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.94862365722656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.445858001708984, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.13835525512695, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.548336029052734, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.06783676147461, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.99596405029297, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.464698791503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.4527473449707, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.2322006225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.28783416748047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.04802703857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.7689208984375, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.40628433227539, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.652591705322266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.65503692626953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.68878173828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.65935516357422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.30607604980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.93294525146484, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.54640197753906, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.27436828613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.11565399169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.20217895507812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.31012725830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.8421859741211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.75100708007812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.65483856201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.38384246826172, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.46981048583984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.40333557128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.73104858398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.845947265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.1443328857422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.66392517089844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.52936553955078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.7731704711914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.52674865722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.09566497802734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.26443481445312, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.80480194091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.43827819824219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.99456787109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.64656829833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.63389205932617, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.34819030761719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.588035583496094, \"water_flow\": 147.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.13800811767578, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.41212844848633, \"water_flow\": 324.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.140037536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.01534652709961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.9122543334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.4817008972168, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.93622589111328, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.71951675415039, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.53279113769531, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.13105773925781, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.91455078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.68785095214844, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.840087890625, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.13799285888672, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.80680084228516, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.05545806884766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.36136627197266, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1864776611328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.34805297851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.53245544433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.47024536132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.30357360839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.4170684814453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9658966064453, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.262939453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.9644317626953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4090576171875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.10577392578125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.21783447265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.10365295410156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.22195434570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9888153076172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5592498779297, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.53182983398438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3018798828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.1780242919922, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.9774627685547, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7363739013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.1647491455078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.54568481445312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.98350524902344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.4356689453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.65968322753906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.561279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.44711303710938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.3000259399414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.99988555908203, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.41494750976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.40579986572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.80552673339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.3468017578125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.28892517089844, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.47053527832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.9894027709961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.21346282958984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.8731918334961, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.8824462890625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.35665130615234, \"water_flow\": 2904.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.13630676269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.83544158935547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.02167510986328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.4563217163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.27081298828125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.593505859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.69796752929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2638702392578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.11085510253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.3809356689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.4561309814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.53941345214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.85421752929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.19464111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.1494903564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.53294372558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.77432250976562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.30955505371094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.7339324951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.93028259277344, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.66526794433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.27810668945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.91294860839844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.760986328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1461944580078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.08361053466797, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.957275390625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.86719512939453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.59320068359375, \"water_flow\": 476.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.12516021728516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.91509246826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.3174819946289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.52185821533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4376220703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.2602767944336, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.842041015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509400.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.52056884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.776068687438965, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.393366813659668, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.432619094848633, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.333916664123535, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.585923194885254, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.028872966766357, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.665306091308594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.8608551025390625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.245094299316406, \"water_flow\": 4345.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.181029319763184, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.9040846824646, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.5907883644104, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.377049922943115, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.486845970153809, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.241551399230957, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 23.214481353759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.858062744140625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.35476303100586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.88524627685547, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.336151123046875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.62337875366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.00764846801758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.64297103881836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.22516632080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.211856842041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.13161849975586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.19252014160156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.99172973632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.87647247314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.8670768737793, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.002845764160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.20431900024414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.400596618652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.806758880615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.616310119628906, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.75758743286133, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.85643768310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.662574768066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.672420501708984, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.806060791015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.802398681640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.839599609375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.04612350463867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.55724334716797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.91796112060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.18232727050781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.45756912231445, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.2387809753418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.54131317138672, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.84724044799805, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.64617156982422, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.04715347290039, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.93803024291992, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.51598358154297, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.983734130859375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.995697021484375, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.174137115478516, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.75869369506836, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.72687530517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.17719268798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.35477447509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.14501190185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.62189865112305, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.61168670654297, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.48432540893555, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.05349349975586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.804931640625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.66489028930664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.73123931884766, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.90416717529297, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.88270568847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.18179321289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.02588653564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.31198120117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.88032531738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.209716796875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.29804229736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.44835662841797, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.66513061523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0813217163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.23947143554688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.46463012695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.8720245361328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.16868591308594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.05841064453125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35852813720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.39195251464844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.04668426513672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.59246063232422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.84208679199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.75040435791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.92975616455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.55175018310547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.7625503540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.30361938476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.704002380371094, \"water_flow\": 146.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.471439361572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.593788146972656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0525016784668, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05000305175781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.317806243896484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.004005432128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.39944076538086, \"water_flow\": 323.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.08854293823242, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.285030364990234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.15861511230469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.25485229492188, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.52252197265625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.59678649902344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.56362915039062, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.57948303222656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.95304107666016, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 89.61677551269531, \"water_flow\": 43.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.3479232788086, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.87212371826172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.58885192871094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.22013092041016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.00527954101562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9915313720703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.95570373535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.56344604492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.27838134765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.02488708496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.08372497558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.05567932128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.81861877441406, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.96435546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.12841796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.9737548828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.30136108398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.55923461914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.36929321289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.42291259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.77525329589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.3542022705078, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3992919921875, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.605712890625, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.83480834960938, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.28564453125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.06016540527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.22486877441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.0987548828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.8428497314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.98788452148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.4833221435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3055877685547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.88213348388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.30193328857422, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.10475158691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.4221420288086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.23908996582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.07172393798828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.57811737060547, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.42105102539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.52777099609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.39446258544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.13694763183594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.40265655517578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.7500991821289, \"water_flow\": 2908.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.32754516601562, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.56666564941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8016357421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.155029296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.1007537841797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.64823913574219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.48648071289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.86495971679688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.0462646484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.64735412597656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.22979736328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.23880004882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.19554138183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.489501953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.6667938232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.6536102294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.6951446533203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5496063232422, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.1060791015625, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.24798583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.9979705810547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8304443359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.38499450683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.41415405273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.6939926147461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.25996398925781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.06475067138672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.53079986572266, \"water_flow\": 487.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.92513275146484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.36541748046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.08525848388672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9393081665039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.0971450805664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.79053497314453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.61703491210938, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6276092529297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509450.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.12486267089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.59813117980957, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.170637130737305, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.612356185913086, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.776406288146973, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.624605655670166, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.655023574829102, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.943158149719238, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.464529037475586, \"water_flow\": 4356.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.622061252593994, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.563716411590576, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.119866371154785, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.7635273933410645, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.900079727172852, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.995715141296387, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.332907676696777, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.64420509338379, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.262271881103516, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.05164337158203, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.0366096496582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.26383972167969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.742820739746094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.76157760620117, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.78155517578125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.712890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.0429458618164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.14946746826172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.85291290283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.93669891357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.3271255493164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.927650451660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.102813720703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.64420700073242, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.7738151550293, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.08023452758789, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.43083953857422, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.64966583251953, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.793357849121094, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.455421447753906, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.4789924621582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.21392822265625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.294700622558594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.476932525634766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.60227584838867, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.523616790771484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.888710021972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.620689392089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.150333404541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.215084075927734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.24574661254883, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.859134674072266, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.04064178466797, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.67236328125, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.34492111206055, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.905033111572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.68563461303711, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.882633209228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.48487091064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.16716003417969, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.901309967041016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.58007049560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.3822250366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.40873718261719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.88357543945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.92570114135742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.690608978271484, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.7411003112793, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.9483528137207, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.43551254272461, \"water_flow\": 51.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.26424789428711, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.25448608398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.66607666015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.34368896484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.62100982666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.3493881225586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.7874526977539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.28547668457031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.18077087402344, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.69996643066406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.2231216430664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.50572204589844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.60601806640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.70895385742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.95556640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.21974182128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7048797607422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.46687316894531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.33726501464844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.12286376953125, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.15919494628906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.61674499511719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.80035400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.58561706542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.49658203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.323211669921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.79352951049805, \"water_flow\": 145.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.372318267822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.093631744384766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.68915557861328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.97736740112305, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.8600959777832, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.97235870361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.879642486572266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.60215759277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.11665725708008, \"water_flow\": 194.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.23073959350586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.67366790771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.11917877197266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.73588562011719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.25987243652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.88877868652344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.07198333740234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.45018768310547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.29006958007812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.17086029052734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.50413513183594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.8798599243164, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.52246856689453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.81768035888672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.84310913085938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.70921325683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.54356384277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.7156524658203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.07948303222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.64837646484375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.87539672851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.55812072753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.60946655273438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.47625732421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.3920135498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.93919372558594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.36712646484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.79403686523438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.99778747558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.8874969482422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.17247009277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.52149963378906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.27293395996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.71676635742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.0088348388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.49769592285156, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.30827331542969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.86488342285156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.25088500976562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.5001983642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.17355346679688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.38690185546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.26734924316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.44631958007812, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.96299743652344, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.22974395751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.69039916992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.4955825805664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.49650573730469, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.09292602539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.03606414794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.39497375488281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.73048400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.72193145751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.12178802490234, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.2904281616211, \"water_flow\": 2924.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.4094009399414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.29354095458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.67880249023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.47915649414062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.302978515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.26409149169922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.76338958740234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.21037292480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.60369873046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.72234344482422, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.62224578857422, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8972930908203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.04806518554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4810028076172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.63673400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.10079956054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7887420654297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7084503173828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.68838500976562, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7433624267578, \"water_flow\": 28.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.70435333251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.62443542480469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.04141235351562, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.22526550292969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.96530151367188, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.62378692626953, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.16195678710938, \"water_flow\": 489.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.58911895751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.25174713134766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.48987579345703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.36100769042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.76778411865234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.16085052490234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.92424011230469, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.83900451660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.49787902832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509500.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.19110870361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.149832725524902, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.975177764892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.681754112243652, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.855098724365234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.42557954788208, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.597528457641602, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.431432247161865, \"water_flow\": 4365.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.599230766296387, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.615478992462158, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.692504405975342, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.129514694213867, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.015366077423096, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.603944778442383, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.228910446166992, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.137279510498047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.31075668334961, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.34453010559082, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.45548629760742, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.55851364135742, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.092796325683594, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.91890335083008, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.327239990234375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.736698150634766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.27509307861328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.9913101196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.73011016845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.77906036376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.3964614868164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.82344055175781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.63690948486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.15946960449219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.46017074584961, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.620121002197266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.050228118896484, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.629005432128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.927833557128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.096649169921875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.857669830322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.394866943359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.096527099609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.7696418762207, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.05854034423828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.34139633178711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.74159240722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.7664680480957, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.315826416015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.718894958496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.54075622558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.1604118347168, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.94776153564453, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.14255142211914, \"water_flow\": 97.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.98721694946289, \"water_flow\": 79.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.02019500732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.513404846191406, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.893775939941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.80154800415039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.97866439819336, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.35576248168945, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.35603332519531, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.27506256103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.5864028930664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.21102905273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.32450866699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.56175231933594, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.914161682128906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.39901351928711, \"water_flow\": 82.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.99922561645508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.67221450805664, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.686893463134766, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.70906448364258, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.3570785522461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.28689575195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.297607421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.0041732788086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.4657974243164, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.87175750732422, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.9384994506836, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.05015563964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.54772186279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.65703582763672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.53897094726562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.63670349121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.30206298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.85704040527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.84111785888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.39122009277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.94171142578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.63507843017578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.00715637207031, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.00869750976562, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.09536743164062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.3185043334961, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.89115142822266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.415130615234375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.18063735961914, \"water_flow\": 134.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.56934356689453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.66426086425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.50540924072266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.9741439819336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.86875915527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.33748626708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.19862747192383, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.261348724365234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.362403869628906, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050323486328125, \"water_flow\": 187.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.23066329956055, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.780914306640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.90982437133789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.71831512451172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.50984954833984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.71929931640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.41315460205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.55663299560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.6798095703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.29716491699219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.87688446044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.02767944335938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.20081329345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.16100311279297, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.01023864746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.43467712402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6130828857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.29232788085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 147.6881561279297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.4060821533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.7863311767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.95651245117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.79588317871094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.76199340820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.67718505859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.1481475830078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.30247497558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.302978515625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.04380798339844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.22061157226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.512451171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.3334197998047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7641143798828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.03358459472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.59886169433594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.3589096069336, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.90323638916016, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.29346466064453, \"water_flow\": 93.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.16117095947266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4320068359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.89968872070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.20697021484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.9870376586914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.66484832763672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.40897369384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.29788208007812, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.98471069335938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.60708618164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.9561004638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.93286895751953, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.43876647949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.323974609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.67083740234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.1136474609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.933837890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.15631866455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.93980407714844, \"water_flow\": 2932.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.80897521972656, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.72198486328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.49004364013672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.06571197509766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.30172729492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.60445404052734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.54151153564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.6424331665039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.16818237304688, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.51143646240234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.15878295898438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.90353393554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.36239624023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.01136016845703, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4983673095703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.764404296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.1134796142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.16075134277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.56259155273438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.43026733398438, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.91587829589844, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.2658462524414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.73484802246094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.0632095336914, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.1319808959961, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.50110626220703, \"water_flow\": 490.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.34859466552734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.65263366699219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.5785140991211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.0442123413086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.66307067871094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.05963134765625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.32398223876953, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.99859619140625, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.14048767089844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.65760040283203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509550.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.56788635253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.485416412353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.109227180480957, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.64727783203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.477167129516602, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.8478617668151855, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.322027206420898, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.1869940757751465, \"water_flow\": 4371.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.575645923614502, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.5813398361206055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.742506980895996, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.2618327140808105, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.259013652801514, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.894129753112793, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.628588676452637, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.018880844116211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.640928268432617, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.01248550415039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.028045654296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.76732635498047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.567832946777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.38490295410156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.46793365478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.02235412597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.30573272705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.77332305908203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.73529815673828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.91667175292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.39934539794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.43032455444336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.5206298828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.195472717285156, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.411407470703125, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.04850387573242, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.73699188232422, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.673301696777344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.29240417480469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.71140670776367, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.92637634277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.87758255004883, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.66139602661133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.14516067504883, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.4546012878418, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.87398147583008, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.18392562866211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.76176834106445, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.633785247802734, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.36801528930664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.54967498779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05979919433594, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.62946319580078, \"water_flow\": 98.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.04994201660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.36296081542969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.09503936767578, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.343963623046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.90565872192383, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.52876281738281, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.23241424560547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.45293045043945, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.44204330444336, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.20484924316406, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.98548889160156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.4977035522461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.92845916748047, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.73012161254883, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.4793701171875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.02638244628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.17262649536133, \"water_flow\": 86.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.90678405761719, \"water_flow\": 92.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.59590148925781, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.25706100463867, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.23625183105469, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.2055892944336, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.85089874267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.21373748779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.6261978149414, \"water_flow\": 21.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.137939453125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.57839965820312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.01661682128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.02088928222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.49430847167969, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.66437530517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.23782348632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2372055053711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.2203598022461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.28046417236328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.25740814208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.26239013671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.29052734375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.38276672363281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.44380950927734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.81123352050781, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.92679595947266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.07666778564453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.6633071899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.73353576660156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.20362854003906, \"water_flow\": 131.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.353965759277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.8862533569336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.38412475585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.72941589355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.41142272949219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.20648193359375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.557682037353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.533416748046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.1475830078125, \"water_flow\": 173.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.32347106933594, \"water_flow\": 125.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.69306564331055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.487735748291016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.571533203125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.90552520751953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.95796203613281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.41984558105469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.73128509521484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.73886108398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.70230865478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.8182144165039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.20581817626953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.0562973022461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.406494140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.70030212402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.90969848632812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.13015747070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.78790283203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3946990966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.2257537841797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.76620483398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.12527465820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.78257751464844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.07261657714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.5739288330078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.54315185546875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.94654846191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.2492218017578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.8572540283203, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.50416564941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.6549072265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.8506622314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.44940185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3800506591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.83419799804688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.7311782836914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.62715148925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.55998229980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.44328308105469, \"water_flow\": 100.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.39898681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.24604034423828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.06145477294922, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.10902404785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.50711059570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.06424713134766, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.15602111816406, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.607421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.058837890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.1123046875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.23011779785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.37149047851562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.59510803222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.88754272460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.27457427978516, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.92742156982422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.15534210205078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.56566619873047, \"water_flow\": 2938.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.36328887939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.67813110351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.14291381835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.65145874023438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.19257354736328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.45561981201172, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.75696563720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.62571716308594, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.95301818847656, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.63761138916016, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.84856414794922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.22826385498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.38674926757812, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.8633041381836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.15281677246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0106658935547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.4520263671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.80471801757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.32376861572266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.82128143310547, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.4118423461914, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.25865173339844, \"water_flow\": 49.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.3862533569336, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.29569244384766, \"water_flow\": 60.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.10502624511719, \"water_flow\": 68.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.85942077636719, \"water_flow\": 512.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.28739166259766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.45318603515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.85994720458984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.78839111328125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.91651916503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.41073608398438, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.83480834960938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.71073913574219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.9372787475586, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.02110290527344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509600.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.32686614990234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.129152297973633, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.703923225402832, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.462452411651611, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.53466796875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.2917022705078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.253686904907227, \"water_flow\": 4402.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.939902305603027, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.361658573150635, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.381093978881836, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.439199924468994, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.237513065338135, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.097248077392578, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.446489334106445, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.766340255737305, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 18.240497589111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.49875831604004, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.77159881591797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.548770904541016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.768550872802734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.95023727416992, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.39506149291992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.96176147460938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.58332061767578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.33880615234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.08222961425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.8094367980957, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.14498519897461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.92699432373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.59299087524414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.82583236694336, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.595069885253906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.351173400878906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.1836051940918, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.613956451416016, \"water_flow\": 104.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.15851974487305, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.79740524291992, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.25288391113281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.19508743286133, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.1246337890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.91613006591797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.63632583618164, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.89919662475586, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.12242126464844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.606407165527344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.25261306762695, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.645599365234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.57449722290039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.995704650878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.551334381103516, \"water_flow\": 166.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.60970687866211, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.30744171142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.65209197998047, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.9406852722168, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.167213439941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.495887756347656, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.644351959228516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.744083404541016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.66935729980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.90161895751953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.0759048461914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.56182098388672, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.2058334350586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.38739776611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.02618408203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.10416412353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.58109283447266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.29184341430664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.36332702636719, \"water_flow\": 183.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.16746139526367, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.56208801269531, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.79313659667969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.05155944824219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.18030548095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.0250244140625, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.71305847167969, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.08956909179688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.9840316772461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.75247955322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.59672546386719, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.64147186279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.00139617919922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.58345031738281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.0070571899414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.52932739257812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.1283950805664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.72096252441406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.54010009765625, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.61592102050781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.35166931152344, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.43339538574219, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.65083312988281, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.58890914916992, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.54377746582031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.09256362915039, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.453861236572266, \"water_flow\": 38.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.54725646972656, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.217594146728516, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.07587432861328, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.67332458496094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.95368194580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.55818176269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.2514877319336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.2769546508789, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.71946334838867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.38856506347656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 164.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.17218780517578, \"water_flow\": 124.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.300716400146484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.02869415283203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.04828643798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.28156280517578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.5467529296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.32806396484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.41808319091797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.72483825683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.04290008544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.05559539794922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.88111877441406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.4334259033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.7349090576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.96900939941406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.11195373535156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.08016967773438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.6973419189453, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.3994598388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.99197387695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.59054565429688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.2955322265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.66717529296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.19509887695312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0289306640625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.0235595703125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.9615936279297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.19253540039062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6256866455078, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.29299926757812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0178985595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.13636779785156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.0719757080078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.91233825683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.3973617553711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.45645904541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.20426177978516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.55352020263672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.25390625, \"water_flow\": 103.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.37808990478516, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.49658966064453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.3489532470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.204345703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.08201599121094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.9890594482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.3405303955078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2290802001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.69277954101562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.26565551757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.87689208984375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.42864990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.63375854492188, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.71051025390625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.52749633789062, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.61748504638672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.67485809326172, \"water_flow\": 2941.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.8521728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.34832763671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.143798828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.78704833984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.48416137695312, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.89891815185547, \"water_flow\": 81.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.68567657470703, \"water_flow\": 78.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.01757049560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.15184783935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.9423599243164, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.94876098632812, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.18637084960938, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.2703628540039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.4388427734375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.76974487304688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.481201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.70217895507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.09341430664062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.6453628540039, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.71434783935547, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.55625915527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.15830993652344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.27962493896484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.20231628417969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.82687377929688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.98149871826172, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.1279525756836, \"water_flow\": 587.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.92579650878906, \"water_flow\": 592.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.88786315917969, \"water_flow\": 599.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.4443359375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.39308166503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.08918762207031, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.49751281738281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.57159423828125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.3755111694336, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.8099136352539, \"water_flow\": 48.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509650.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.07508087158203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.2993693351745605, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.7107086181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.23508358001709, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.80647611618042, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.224208354949951, \"water_flow\": 4416.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.426422119140625, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.687004089355469, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.113170146942139, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.1836442947387695, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.339457988739014, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.283786773681641, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.607126235961914, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 12.483784675598145, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.877257347106934, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 20.93815040588379, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.134403228759766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.46110725402832, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.92203903198242, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.99890899658203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.734893798828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.70252227783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.38307189941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.16053771972656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.69216918945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.9548568725586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.74708557128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.963951110839844, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.802757263183594, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.82973098754883, \"water_flow\": 31.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.08870315551758, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.524593353271484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.889671325683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.25490951538086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.54608917236328, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.39623260498047, \"water_flow\": 133.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.27338790893555, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.87955856323242, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.19032669067383, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.030303955078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.858253479003906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.743499755859375, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.95882797241211, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.24717330932617, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.86381530761719, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.81440353393555, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.3830451965332, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.3914680480957, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.745567321777344, \"water_flow\": 169.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.7018928527832, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.566226959228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.72145462036133, \"water_flow\": 46.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.253265380859375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.95174789428711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.99031066894531, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.42137145996094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.07765579223633, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.52975463867188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.05464172363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.8870849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.93500518798828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.721435546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.90985870361328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.4655990600586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.74474334716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.20411682128906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.35499572753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.753173828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.180809020996094, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.804988861083984, \"water_flow\": 193.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.26565170288086, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.50547790527344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.27507019042969, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.589271545410156, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.97338104248047, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.58272552490234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.79972839355469, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.4735107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 94.32331848144531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.43462371826172, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.50962829589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 91.45182037353516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.76741790771484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 95.8327407836914, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.6749267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.99073791503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 96.21942901611328, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 93.31627655029297, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.35777282714844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.10560607910156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.9586181640625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.21549987792969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.85580062866211, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.28728485107422, \"water_flow\": 35.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.36838912963867, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.4571647644043, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.151222229003906, \"water_flow\": 72.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.287689208984375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.44081497192383, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.01431274414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.75505065917969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.00190734863281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.46894836425781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.6490478515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.55518341064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.830955505371094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.23015594482422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.21181869506836, \"water_flow\": 163.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.051719665527344, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.050201416015625, \"water_flow\": 117.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.860469818115234, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.9485969543457, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.95649719238281, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.02803039550781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.7425308227539, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.96549987792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.88895416259766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.48320007324219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.16400909423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.95462036132812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.52862548828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8650360107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.14700317382812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.07931518554688, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1161346435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.1597137451172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.72825622558594, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.03457641601562, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.83485412597656, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.66294860839844, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.02203369140625, \"water_flow\": 26.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7387237548828, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.80101013183594, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.00306701660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.7882537841797, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7602996826172, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.43185424804688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.82643127441406, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.50765991210938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0704803466797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.06919860839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.46109008789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.59475708007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.8271713256836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.57086181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.80239868164062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.66781616210938, \"water_flow\": 113.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.9160385131836, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.01950073242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.15127563476562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.70327758789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.3583755493164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.76614379882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.087158203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.66171264648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6251678466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.62132263183594, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.735595703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.80758666992188, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.09398651123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.3436279296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.9981918334961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.4996337890625, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.82307434082031, \"water_flow\": 2945.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03205871582031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.21234130859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.24305725097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.61471557617188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.4401626586914, \"water_flow\": 109.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.3691635131836, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.24569702148438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.04430389404297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.34920501708984, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.14850616455078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.32720184326172, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.90426635742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.75393676757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.55230712890625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.92303466796875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.13394165039062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.25730895996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.46772766113281, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.17048645019531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.30116271972656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.10548400878906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.80323028564453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.74343872070312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.61193084716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.6537857055664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.37559509277344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.0449447631836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.70023345947266, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.43476867675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1292495727539, \"water_flow\": 600.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.75299835205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.8485107421875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.4814224243164, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.64610290527344, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.10784912109375, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.20819854736328, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509700.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.54315948486328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.629086971282959, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.984303951263428, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.620172023773193, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.251327991485596, \"water_flow\": 4433.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.640539646148682, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 3.787302255630493, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.382422924041748, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.882116317749023, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.0492753982543945, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.3976569175720215, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.726963520050049, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 9.82429027557373, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.270437240600586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.959564208984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.249183654785156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 28.328662872314453, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.906856536865234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.28270721435547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.12519073486328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.834346771240234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.731964111328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.37836837768555, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.68052673339844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.34537506103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.17334747314453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.2223129272461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.0498046875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.15665435791016, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.25719451904297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.497562408447266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.404964447021484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.576202392578125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.594276428222656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.261268615722656, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.154449462890625, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.376617431640625, \"water_flow\": 143.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.74310302734375, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.32270431518555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.54868698120117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.153438568115234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.891685485839844, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.18965530395508, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.20524978637695, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.307132720947266, \"water_flow\": 294.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.586647033691406, \"water_flow\": 279.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.40218734741211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.2841911315918, \"water_flow\": 171.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.13611602783203, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.86688232421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.84861373901367, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.214656829833984, \"water_flow\": 52.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.874786376953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.183837890625, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.72146987915039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.67908477783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.95298767089844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 87.06059265136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.2901840209961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.42613220214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.63956451416016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.30836486816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.38453674316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.18098449707031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.27456665039062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.94483184814453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.61433410644531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.7879638671875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.24703598022461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.61105728149414, \"water_flow\": 207.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.43449401855469, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.1971321105957, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.563655853271484, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.49805450439453, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.12336730957031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.63675689697266, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.17520904541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.52537536621094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.23438262939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.078369140625, \"water_flow\": 19.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.78358459472656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.42752075195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 92.26966094970703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.63966369628906, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.76326751708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.99480438232422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.42093658447266, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 90.63085174560547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.00283813476562, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.85441589355469, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.0613784790039, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.19148254394531, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.65601348876953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.331016540527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.55937957763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.153594970703125, \"water_flow\": 66.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.40659713745117, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.06159210205078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.4090805053711, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.92031860351562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.04292297363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.08135223388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.85153198242188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.88827514648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.31441116333008, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.70402908325195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.090965270996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.319541931152344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.468135833740234, \"water_flow\": 160.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05017852783203, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.05181884765625, \"water_flow\": 110.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.295536041259766, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.68229675292969, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.32942199707031, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.40499877929688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.54480743408203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.52452087402344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.81110382080078, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.03787994384766, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.25277709960938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.89755249023438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.86936950683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.0780487060547, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.2342987060547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.74441528320312, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.97030639648438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.75711059570312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.16860961914062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0240478515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.2408447265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.68670654296875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.198486328125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.6295623779297, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.91383361816406, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.6067657470703, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.74560546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.42919921875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.79401397705078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.66942596435547, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.2158966064453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.5688934326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.90409851074219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.03190612792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.82716369628906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.93527221679688, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.72948455810547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.25763702392578, \"water_flow\": 127.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.68675994873047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.23888397216797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.8114776611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.99754333496094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.84333038330078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.63235473632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.36866760253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.47279357910156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.69956970214844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.38790893554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.23109436035156, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.41082000732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.10189056396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.07217407226562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.43830108642578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.93987274169922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.18289184570312, \"water_flow\": 2966.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.29037475585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.31633758544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5715103149414, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.31798553466797, \"water_flow\": 116.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.17737579345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.4879150390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.77909851074219, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.32395935058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.18392181396484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.16217041015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.2008056640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.79513549804688, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.63223266601562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2308807373047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.84722900390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.38189697265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.28646850585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.5626220703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.39191436767578, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.87500762939453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.68499755859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.00235748291016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.35037994384766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.17887878417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.19060516357422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.90711975097656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.39591979980469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.37063598632812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.38591003417969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.63789367675781, \"water_flow\": 231.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.42090606689453, \"water_flow\": 601.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.30199432373047, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.65674591064453, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.88359832763672, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.75273895263672, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.50431823730469, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509750.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.1404800415039, \"water_flow\": 111.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.57317590713501, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.52642297744751, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.340104103088379, \"water_flow\": 4446.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.082614898681641, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.779846668243408, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.722851276397705, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 3.6700117588043213, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.261498928070068, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.89249324798584, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.5368332862854, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 7.189521312713623, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.24096393585205, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.77408504486084, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.435014724731445, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.73310470581055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.16049575805664, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.4858512878418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.99857711791992, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.782066345214844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.422027587890625, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.75566101074219, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.38710403442383, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.49262237548828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.69685363769531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.7610092163086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.2987289428711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.01499938964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.3366470336914, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.55650329589844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.74752044677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.47291564941406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.0871696472168, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.99625015258789, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.916526794433594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.43011474609375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.057369232177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.23332595825195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.80238342285156, \"water_flow\": 153.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.94436264038086, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.38835144042969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.81329345703125, \"water_flow\": 355.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.45772171020508, \"water_flow\": 311.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.104671478271484, \"water_flow\": 301.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.93107604980469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.455379486083984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.3978385925293, \"water_flow\": 276.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 42.91936492919922, \"water_flow\": 96.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.63975143432617, \"water_flow\": 91.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.83757781982422, \"water_flow\": 87.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.57239532470703, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.22235870361328, \"water_flow\": 30.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.48713302612305, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.56581115722656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.93169403076172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.42202758789062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.36200714111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.09336853027344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.98323822021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.39553833007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.251953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.54521179199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.55461883544922, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.48289489746094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.883480072021484, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.8369140625, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.18983459472656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.38523864746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.64326095581055, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.83258819580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.240440368652344, \"water_flow\": 218.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.6890754699707, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.88458251953125, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.206939697265625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.492225646972656, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.54266357421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.738243103027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.11061096191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.9400634765625, \"water_flow\": 22.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.24380493164062, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.78955078125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.94049072265625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.9561767578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.863525390625, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.73434448242188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.63674926757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 86.5923080444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.74994659423828, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.55654907226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.30722045898438, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.21980285644531, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.89390563964844, \"water_flow\": 33.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.01638793945312, \"water_flow\": 36.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.139915466308594, \"water_flow\": 40.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.96017074584961, \"water_flow\": 58.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.039276123046875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.25346374511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.93048095703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.14167022705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.07620239257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.73855590820312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.60885620117188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.56365203857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.4365463256836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.88214111328125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.28200912475586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.53852462768555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.871849060058594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.33841323852539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.376522064208984, \"water_flow\": 157.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.0504264831543, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.04999923706055, \"water_flow\": 102.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.075435638427734, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.4505500793457, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.36137390136719, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.57068634033203, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.05101776123047, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.91757202148438, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.8239517211914, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.01554107666016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.4993438720703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.447998046875, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.65267944335938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.09519958496094, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.3174285888672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.254150390625, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.3986053466797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.16162109375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.56646728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.3817138671875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.72476196289062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.3079376220703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.21710205078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.9978485107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.7052764892578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.37525939941406, \"water_flow\": 54.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.20626831054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.65492248535156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.61659240722656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.96766662597656, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.78428649902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.4037857055664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.53499603271484, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.58487701416016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.06883239746094, \"water_flow\": 141.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.40152740478516, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.16670989990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.09233093261719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.52306365966797, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.28961181640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.35508728027344, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.35792541503906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.52711486816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4865264892578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.71170043945312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5880584716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.8262939453125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.58887481689453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.55107116699219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.80101013183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.39459228515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.2828598022461, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.1957778930664, \"water_flow\": 3116.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.97268676757812, \"water_flow\": 144.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.11817169189453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.02558898925781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.75717163085938, \"water_flow\": 123.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.38526153564453, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4699249267578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.75516510009766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.21798706054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.72756958007812, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.86241149902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 136.5308074951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.42361450195312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.80751037597656, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.0462646484375, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.94129943847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.6198272705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.12266540527344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.01661682128906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.994140625, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.64810180664062, \"water_flow\": 44.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.68383026123047, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.24591827392578, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.16431427001953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.93360137939453, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.1517333984375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.05393981933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.06851959228516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.58509826660156, \"water_flow\": 223.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.97637176513672, \"water_flow\": 225.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.55522918701172, \"water_flow\": 228.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.70093536376953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.92100524902344, \"water_flow\": 237.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.2544174194336, \"water_flow\": 602.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.6830062866211, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.57923889160156, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.11756134033203, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.24365234375, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509800.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.46728515625, \"water_flow\": 131.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.4688615798950195, \"water_flow\": 8204.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.520816326141357, \"water_flow\": 8201.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.436346530914307, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.279433727264404, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.070960521697998, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.6366424560546875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 3.910006046295166, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 3.5124733448028564, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.64178466796875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.740121841430664, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 8.46965217590332, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.68552303314209, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 14.181960105895996, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 33.13921356201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.271148681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.795196533203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.781776428222656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 29.04912757873535, \"water_flow\": 34.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.11868667602539, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.95158767700195, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.15529251098633, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.52718353271484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.97522735595703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 80.12615203857422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.62684631347656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.8721923828125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.06172180175781, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.81214141845703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.56002044677734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.09163665771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.29985809326172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.59181213378906, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.20248031616211, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.435245513916016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.234825134277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.248714447021484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.96527862548828, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.91472244262695, \"water_flow\": 155.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 37.348426818847656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 35.303646087646484, \"water_flow\": 363.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.39607238769531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.79023742675781, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.22916030883789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.20941925048828, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.188507080078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.5498161315918, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.00361633300781, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.86784362792969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.26491928100586, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.45597839355469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.40577697753906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.26371765136719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.509986877441406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.674827575683594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.589813232421875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.23931121826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.21830749511719, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.04863739013672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.42467498779297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.21814727783203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.30196380615234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.24398040771484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.72447204589844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.9466667175293, \"water_flow\": 15.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.41379928588867, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.95640563964844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.19312286376953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.144161224365234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.310245513916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.389225006103516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.92338180541992, \"water_flow\": 256.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.116859436035156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.474361419677734, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.65711975097656, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.55025100708008, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.42522430419922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.775535583496094, \"water_flow\": 23.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.838409423828125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 59.48336410522461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.89889144897461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.46356964111328, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.9530258178711, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.10830688476562, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.48040008544922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.64860534667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.74429321289062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.04446411132812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.82681274414062, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.21656036376953, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.43045043945312, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.54959106445312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.32501220703125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.999088287353516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.98798370361328, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.7724609375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.55364227294922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.8954086303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.46906280517578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.42955780029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.12309265136719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.09999084472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.94690704345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.11848449707031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.98619079589844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.50236511230469, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.385009765625, \"water_flow\": 76.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.660736083984375, \"water_flow\": 120.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.686126708984375, \"water_flow\": 123.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.558807373046875, \"water_flow\": 32.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.88981246948242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.23856735229492, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.22366714477539, \"water_flow\": 88.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.10410690307617, \"water_flow\": 84.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.60249328613281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.60755157470703, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.98282241821289, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.66653442382812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.96158599853516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.77740478515625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.64108276367188, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.95413208007812, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.83277893066406, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.32725524902344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.40882873535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.83522033691406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.27664184570312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 149.03811645507812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.02706909179688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 150.84735107421875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.772705078125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.3306884765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 144.9874267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.98777770996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.14988708496094, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.3333740234375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.93994140625, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.190185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.76976013183594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.87959289550781, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.75106811523438, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.26358795166016, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.36293029785156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.89983367919922, \"water_flow\": 152.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.55389404296875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.9581298828125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.43737030029297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.18852233886719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.23987579345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.8908462524414, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.79024505615234, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.5861358642578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.69065856933594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.09014892578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.6772918701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.72021484375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.5370864868164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.7039566040039, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.85975646972656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.97473907470703, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 102.22045135498047, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.21868896484375, \"water_flow\": 3121.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.2442855834961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.3969955444336, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.50492095947266, \"water_flow\": 141.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.18403625488281, \"water_flow\": 130.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.5335693359375, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.74560546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.4752197265625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.88131713867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.75521850585938, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.49032592773438, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.6947784423828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.02606201171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.96336364746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.3673095703125, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.6094207763672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.3698272705078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.7030029296875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.03384399414062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.77865600585938, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.40572357177734, \"water_flow\": 27.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.32106018066406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 114.00891876220703, \"water_flow\": 47.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.62089538574219, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.76261901855469, \"water_flow\": 56.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.10467529296875, \"water_flow\": 59.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.26371002197266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.89362335205078, \"water_flow\": 67.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.431884765625, \"water_flow\": 222.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.61642456054688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.43407440185547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.86516571044922, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.78010559082031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.16300201416016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.78777313232422, \"water_flow\": 247.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.31354522705078, \"water_flow\": 603.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.53588104248047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.51043701171875, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.40279388427734, \"water_flow\": 145.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509850.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.41973876953125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.546089172363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.607319355010986, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.451762676239014, \"water_flow\": 3745.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.254334926605225, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.944869041442871, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.472147464752197, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 3.6614465713500977, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 3.657565116882324, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.380256652832031, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.091059684753418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.502378463745117, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.376679420471191, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.821525573730469, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 22.84832000732422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.444679260253906, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 26.94688606262207, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.93742561340332, \"water_flow\": 37.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 30.215368270874023, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.68842697143555, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.830936431884766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.3047866821289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.56797790527344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.65233612060547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.06744384765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.22776794433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.88934326171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.43138122558594, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.91011047363281, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.65185546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.13658905029297, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.6876220703125, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.248695373535156, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.169708251953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.81405258178711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.18026351928711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 43.43635940551758, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 38.422889709472656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.286285400390625, \"water_flow\": 158.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.97346115112305, \"water_flow\": 364.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 39.24755859375, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.907405853271484, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 44.14645767211914, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.69059371948242, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.531211853027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.88444900512695, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.387672424316406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.744144439697266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.17546463012695, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.408748626708984, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.621402740478516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.780914306640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.732486724853516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.78542709350586, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.125308990478516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.76089859008789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.8968391418457, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.973663330078125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.6817626953125, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.01016998291016, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.20146179199219, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.25995635986328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.44237518310547, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.78779220581055, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.016075134277344, \"water_flow\": 20.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.855281829833984, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.537052154541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.926666259765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.241092681884766, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.06555938720703, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.18461990356445, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.457115173339844, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.19352722167969, \"water_flow\": 268.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.082462310791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.07012939453125, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.71644592285156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.77655029296875, \"water_flow\": 24.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.67268753051758, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.791343688964844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.343727111816406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.33633041381836, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.40599822998047, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.36162567138672, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.22674560546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.30082702636719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.91769409179688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.6562271118164, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.4060287475586, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.80599975585938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.10511779785156, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.22224426269531, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 78.91619110107422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.21967315673828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.13960266113281, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.2875747680664, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.19029235839844, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.6651382446289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.249267578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.41021728515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.86979675292969, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.70761108398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.54649353027344, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.82485961914062, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.88603591918945, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.65471649169922, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.61868667602539, \"water_flow\": 65.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.028133392333984, \"water_flow\": 42.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.12038040161133, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.905521392822266, \"water_flow\": 29.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.46830368041992, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.9180908203125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.938011169433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.38258361816406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.88631820678711, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.370201110839844, \"water_flow\": 75.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.97263717651367, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 62.37205123901367, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.18276977539062, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.59728240966797, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.00334930419922, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.42609405517578, \"water_flow\": 16.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.61843872070312, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.68409729003906, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.7843780517578, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.95310974121094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.2544708251953, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.5565185546875, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.45831298828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 148.51272583007812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 152.298583984375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 151.90184020996094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.8572540283203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.313720703125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.62168884277344, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 137.30587768554688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.50704956054688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.72848510742188, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.15272521972656, \"water_flow\": 69.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.78449249267578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.05130004882812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.14999389648438, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.0749740600586, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.89924621582031, \"water_flow\": 162.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.5118179321289, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.47541046142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.23296356201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.32351684570312, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.83648681640625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.6727066040039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.84068298339844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.79856872558594, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.39022064208984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.36856079101562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.92625427246094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.24449157714844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.09300231933594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.55728912353516, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.40010070800781, \"water_flow\": 11.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 113.34664916992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.08646392822266, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.38093566894531, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.6820297241211, \"water_flow\": 3126.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.99801635742188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.14876556396484, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.5798568725586, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.66712951660156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.99964904785156, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.48748779296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.84534454345703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 129.56680297851562, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.7183074951172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.45968627929688, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.597900390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.549560546875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.46217346191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.12686157226562, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 146.44419860839844, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.39065551757812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 130.1904296875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 119.15408325195312, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.0640640258789, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.21387481689453, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.71341705322266, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.3551025390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.15870666503906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.9522476196289, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.14395904541016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.06365966796875, \"water_flow\": 62.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.59526824951172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.69099426269531, \"water_flow\": 149.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.88709259033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.44429779052734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.59757232666016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.00235748291016, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.75521087646484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.56889343261719, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.51789093017578, \"water_flow\": 254.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.34934997558594, \"water_flow\": 604.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.4590835571289, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.10428619384766, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509900.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.98368835449219, \"water_flow\": 150.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300050.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.776976108551025, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300100.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.005256652832031, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300150.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.638847351074219, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300200.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 5.200710296630859, \"water_flow\": 3734.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300250.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.462811470031738, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300300.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 3.914461374282837, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300350.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 3.3723716735839844, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300400.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.525073528289795, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300450.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 4.74393892288208, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300500.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 6.2596235275268555, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300550.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 10.51420783996582, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300600.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 11.499221801757812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300650.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 13.41284465789795, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300700.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 15.632573127746582, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300750.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.304533004760742, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300800.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 19.774089813232422, \"water_flow\": 53.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300850.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 24.150157928466797, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300900.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 31.556711196899414, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [300950.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.08280563354492, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301000.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.54716110229492, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301050.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.88213348388672, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301100.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.44013214111328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301150.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 88.81900787353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301200.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 75.30586242675781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301250.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.19916534423828, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301300.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.66572570800781, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301350.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.82254791259766, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301400.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 74.74474334716797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301450.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.43592071533203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301500.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 68.57945251464844, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301550.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.02608489990234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301600.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 81.39114379882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301650.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 65.59442901611328, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301700.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.19340133666992, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301750.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 45.63808822631836, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301800.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 40.23063659667969, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301850.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 36.2462043762207, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301900.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 32.1423454284668, \"water_flow\": 531.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [301950.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 34.791934967041016, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302000.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 41.00406265258789, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302050.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 46.79259490966797, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302100.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 49.06972885131836, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302150.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.917057037353516, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302200.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.304046630859375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302250.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.207550048828125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302300.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 47.91083526611328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302350.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.03853988647461, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302400.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.19403076171875, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302450.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.27141189575195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302500.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.40578842163086, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302550.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.538761138916016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302600.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.445289611816406, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302650.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.46099853515625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302700.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.42958068847656, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302750.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 48.804710388183594, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302800.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.393409729003906, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302850.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.04634475708008, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302900.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.26603698730469, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [302950.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 61.56304168701172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303000.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.410301208496094, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303050.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.68205642700195, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303100.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.4091682434082, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303150.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.430938720703125, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303200.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.6691780090332, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303250.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.773502349853516, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303300.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.02195739746094, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303350.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 58.86686325073242, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303400.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.41924285888672, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303450.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.979549407958984, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303500.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.85525131225586, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303550.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.66671371459961, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303600.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.56793975830078, \"water_flow\": 270.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303650.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 51.96799850463867, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303700.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.152706146240234, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303750.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 52.658050537109375, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303800.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.67219924926758, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303850.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.67046356201172, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303900.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.11883544921875, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [303950.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.89929962158203, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304000.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.45951843261719, \"water_flow\": 13.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304050.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.82543182373047, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304100.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.46157455444336, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304150.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 63.9353141784668, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304200.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 67.95706176757812, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304250.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.63035583496094, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304300.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 72.79798126220703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304350.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.79745483398438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304400.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.78607177734375, \"water_flow\": 6.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304450.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.13009643554688, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304500.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.92875671386719, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304550.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 84.4969711303711, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304600.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 85.80364990234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304650.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 83.4369125366211, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304700.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 82.8017578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304750.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 79.60759735107422, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304800.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 77.47999572753906, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304850.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 76.80023956298828, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304900.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 73.90966796875, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [304950.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 71.5595932006836, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305000.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 69.31307983398438, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305050.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 66.72126770019531, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305100.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 64.02652740478516, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305150.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.253936767578125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305200.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.206417083740234, \"water_flow\": 64.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305250.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.923282623291016, \"water_flow\": 41.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305300.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.2456169128418, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305350.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 57.6328239440918, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305400.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.662635803222656, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305450.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.78202819824219, \"water_flow\": 25.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305500.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 55.182735443115234, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305550.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 56.31196975708008, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305600.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.95539093017578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305650.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 53.06303787231445, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305700.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 50.313873291015625, \"water_flow\": 50.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305750.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 54.860755920410156, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305800.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 60.21809768676758, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305850.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 70.72077178955078, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305900.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.47154998779297, \"water_flow\": 10.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [305950.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.19398498535156, \"water_flow\": 17.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306000.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.79124450683594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306050.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.1304702758789, \"water_flow\": 9.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306100.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 132.82398986816406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306150.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.68251037597656, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306200.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.9508819580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306250.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.39573669433594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306300.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.93600463867188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306350.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 142.3577423095703, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306400.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.4637908935547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306450.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 143.0428009033203, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306500.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.78955078125, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306550.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.2232208251953, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306600.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 139.23887634277344, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306650.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.06735229492188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306700.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 138.17535400390625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306750.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.968994140625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306800.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.96759796142578, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306850.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 126.92290496826172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306900.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.13250732421875, \"water_flow\": 73.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [306950.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.90185546875, \"water_flow\": 77.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307000.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.8166275024414, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307050.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.23351287841797, \"water_flow\": 200.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307100.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.42034912109375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307150.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.57321166992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307200.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.98275756835938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307250.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 125.87352752685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307300.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.50640106201172, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307350.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 124.93590545654297, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307400.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 123.4327392578125, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307450.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.03244018554688, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307500.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.53520965576172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307550.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 121.85511016845703, \"water_flow\": 18.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307600.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.783935546875, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307650.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 140.9508819580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307700.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 141.7542724609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307750.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 131.60748291015625, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307800.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.33649444580078, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307850.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.01214599609375, \"water_flow\": 14.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307900.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.1592788696289, \"water_flow\": 12.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [307950.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1193618774414, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308000.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.07587432861328, \"water_flow\": 3131.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308050.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 100.25446319580078, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308100.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 104.1048355102539, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308150.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 106.01805877685547, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308200.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 112.91744232177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308250.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.08085632324219, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308300.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.69996643066406, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308350.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 127.14016723632812, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308400.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 128.71383666992188, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308450.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.58909606933594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308500.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.01370239257812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308550.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.58245849609375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308600.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.79075622558594, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308650.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.53021240234375, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308700.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 133.54739379882812, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308750.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 135.38607788085938, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308800.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 145.01686096191406, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308850.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 134.9077606201172, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308900.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 122.84310150146484, \"water_flow\": 4.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [308950.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.40707397460938, \"water_flow\": 8.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309000.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.07498168945312, \"water_flow\": 5.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309050.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 118.61245727539062, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309100.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 120.83269500732422, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309150.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 117.61920166015625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309200.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 116.13619232177734, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309250.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.15728759765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309300.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 115.96493530273438, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309350.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 110.84806060791016, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309400.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 107.97764587402344, \"water_flow\": 144.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309450.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 109.1197509765625, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309500.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 108.5221176147461, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309550.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 111.5047378540039, \"water_flow\": 1.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309600.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 105.87812042236328, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309650.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 103.08084106445312, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309700.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 99.13166046142578, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309750.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.8306655883789, \"water_flow\": 3.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309800.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.44918060302734, \"water_flow\": 2.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309850.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.2582015991211, \"water_flow\": 258.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309900.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 97.73664093017578, \"water_flow\": 605.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [309950.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 98.29946899414062, \"water_flow\": 7.0}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [310000.0, 6509950.0], \"type\": \"Point\"}, \"properties\": {\"elevation_data\": 101.19024658203125, \"water_flow\": 165.0}, \"type\": \"Feature\"}]\n" + ] + } + ], + "source": [ + "coordinates = utils.get_coordinate_center_points_from_tfw(tfw, elevation_data, accum_d8, 200, 200)\n", + "print(coordinates)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " geometry elevation_data water_flow\n", + "0 POINT (300050 6500000) 102.804657 2.0\n", + "1 POINT (300100 6500000) 106.271179 1.0\n", + "2 POINT (300150 6500000) 107.156288 1.0\n", + "3 POINT (300200 6500000) 102.407806 1.0\n", + "4 POINT (300250 6500000) 97.380127 3.0\n", + "... ... ... ...\n", + "39995 POINT (309800 6509950) 98.449181 2.0\n", + "39996 POINT (309850 6509950) 98.258202 258.0\n", + "39997 POINT (309900 6509950) 97.736641 605.0\n", + "39998 POINT (309950 6509950) 98.299469 7.0\n", + "39999 POINT (310000 6509950) 101.190247 165.0\n", + "\n", + "[40000 rows x 3 columns]\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAcAAAAGsCAYAAABKE3dSAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOz9e+ws23bXh37GnLOquvv3W2vt13niY3Mw2CIKdqzYeRlLWEpEfFFukBWk6IKwLooiIcI7N5EVUJQIiEiAWPwTKyixOVFIJITMK3KwAhchWQYJ5x7FvkQ2BwPmnnN8Xnvvtdbv191VNecc948xZlX1b6+9fbZfe0e7h7RW96+6u6rmo+aYY4zv+A5RVeUqV7nKVa5ylQ+YhPf6Bq5ylatc5SpXeS/kqgCvcpWrXOUqH0i5KsCrXOUqV7nKB1KuCvAqV7nKVa7ygZSrArzKVa5ylat8IOWqAK9ylatc5SofSLkqwKtc5SpXucoHUq4K8CpXucpVrvKBlKsCvMpVrnKVq3wg5aoAr3KVq1zlKh9I+UAqwL/zd/4O/9a/9W/x8Y9/HBHhL//lv/yuz6Gq/Kk/9af4hm/4BoZh4Ff9ql/FH//jf/yX/mavcpWrXOUqvyyS3usbeC/k/v6eb/7mb+Z3/a7fxXd/93f/gs7x+3//7+dHfuRH+FN/6k/xG37Db+D111/n9ddf/yW+06tc5SpXucovl8gHnQxbRPihH/ohfutv/a3LsXEc+U/+k/+E/+l/+p948803+ef/+X+eP/kn/yS/6Tf9JgD+z//z/+Sbvumb+Mmf/Em+8Ru/8b258atc5SpXucovSj6QLtCfT/6D/+A/4Md+7Mf4n//n/5n/4//4P/htv+238W/+m/8m//Af/kMA/tpf+2v8ml/za/jrf/2v88lPfpJf/at/Nf/ev/fvXS3Aq1zlKlf5v5BcFeAD+dmf/Vl+4Ad+gL/4F/8i3/Ed38HXf/3X8x/+h/8hv/E3/kZ+4Ad+AICf+Zmf4Z/+03/KX/yLf5FPfepT/OAP/iA//uM/zr/z7/w77/HdX+UqV7nKVb5a+UDGAN9JfuInfoJSCt/wDd9wcXwcR1599VUAaq2M48inPvWp5Xv/3X/33/Ev/ov/Ij/1Uz91dYte5SpXucr/BeSqAB/I3d0dMUZ+/Md/nBjjxWe3t7cAfOxjHyOldKEkf/2v//WAWZBXBXiVq1zlKu9/uSrAB/It3/ItlFL44he/yHd8x3e88Dvf/u3fTs6Zf/SP/hFf//VfD8BP//RPA/B1X/d1v2L3epWrXOUqV/mFywcSBXp3d8dnPvMZwBTen/kzf4bv/M7v5JVXXuFrv/Zr+R2/43fwoz/6o/zpP/2n+ZZv+Ra+9KUv8Tf/5t/km77pm/gtv+W3UGvl277t27i9veX7vu/7qLXye37P7+Hx48f8yI/8yHvcuqtc5SpXucpXIx9IBfi3//bf5ju/8zvfcvx7vud7+MEf/EHmeeaP/bE/xqc+9Sk++9nP8tprr/Gv/Cv/Cv/Zf/af8Rt+w28A4HOf+xy/9/f+Xn7kR36Em5sbvuu7vos//af/NK+88sqvdHOucpWrXOUqvwD5QCrAq1zlKle5ylWuaRBXucpVrnKVD6RcFeBVrnKVq1zlAykfGBRorZXPfe5zPHr0CBF5r2/nKle5ylWu8i5FVXn+/Dkf//jHCeEXb799YBTg5z73OT7xiU+817dxlatc5SpX+UXKP/tn/4yv+Zqv+UWf5wOjAB89egRYxz1+/Pg9vpurXOUqV7nKu5Vnz57xiU98YlnPf7HygVGAze35+PHjqwK8ylWucpX/C8svVRjrCoK5ylWucpWrfCDlqgCvcpWrXOUqH0i5KsCrXOUqV7nKB1KuCvAqV7nKVa7ygZSrArzKVa5ylat8IOWqAK9ylatc5SofSLkqwKtc5SpXucoHUq4K8CpXucpVrvKBlHedCP/Zz36W//g//o/54R/+YY7HI7/21/5afuAHfoBv/dZvfeH336723uc//3k++tGPAvB3/s7f4b/6r/4rfvzHf5zPf/7z/NAP/RC/9bf+1ovvqyr/6X/6n/Ln/tyf48033+Tbv/3b+W/+m/+GX/frft27bcIvSJ5++Rn/n7/1/+XzP/MFFGU6zdw83vP8zXv2NwM1V+ZpZv9oz/2b9xwe75nGGa2wuxm4f3bm5uUbxtNESIl+SNzfT9w8OXA+TqRdR4iR82ni5vGB43GivxmoUThr5fBkz5s60z/pmIMyxsJ+3/NsHnmUeqZzRjLsUuL+NHG76znNmRADXRe4O0083g0czzN9CIQYuK8zt/ue493EjSaYlHzK3PYdp+cj+74jzxmdKvt9x93zkZvHO05zRpPQ73vuzyO3h57jaSalQAyB4zjz6DBwPE2kFAlBGMeZm8PA3XFiNyRUlTkXDruO58eJm13PlDO1Kvuh4+40cbPvGeeMRqEfEs+nidubgeM4k0IgReF4nnm0H7g/TuxiRFQYJ2vX3XFit0sUlLlWDruOu+PETd+Rp0Iplf3Qc38aORwGzuNECIE+Je5PI7c3A6dxJsZAjMJpzHbe88QwdKDKOBdu9h3PzxP7oaOoMtfCYd/zfBw57HvOOaMCuz5xN80c9h3nKRNjoIuBuzzxaDdwN830XUAQTnPmcd9zN07sYkKBac7c9j3PzyM3XUfOlVKUQ9dxdxq5HXrGKSMKQ0rcH23MT6eJGAJdChzPEzeHHcfzRB8jUQKnceZm13Hv7aqqzHPhZtdzf3/mZjcwT5miyrDvuZusv046Ux4p/ZPAGO95edcx6Zkk0IVI1hNP+p6xntiHQBSlcOYQD4z1jiEMqFaqzuzCnlO9pw8H5mrX6sKOUz2xC3vmOgKBQM+zPNOHW+7yhEgiEDmViX3Yc19GeukA4VxnbtKeu/nEPvWoFopm9qnnPp85xD1Tnamq7GLPXT5zSHvOeSIQ6ELivow86nbM9cjjvrKPBeVEH254Os3M9ZZTjjyf4BB3PJtG9nFgnitThtvY8WwauR0GxjJDgF2MHOvI477nWCb6KAxJyBx50vWM9cwQhS5A1pFD3HOfT9ZfVLJmdnHPfT5yiAOlZvo4chMTz/JM0cc8m5SpJjp6nueJ2zRwrhNdEDqJfmzP3TzRhUhAOJWZR2nH02lkkIGqylgKt52tMzddT66ZUmEXep5NE4+irTNCYIiRu3niUT9wnGc6CUQJHMvMo37gLo/86scv8c0f+hi/7qXXfkXW7Z9P3pUCfOONN/j2b/92vvM7v5Mf/uEf5kMf+hD/8B/+Q15++eWf97c/9VM/dcHA8uEPf3h5f39/zzd/8zfzu37X7+K7v/u7X/j7//K//C/5s3/2z/Ln//yf55Of/CR/9I/+UX7zb/7N/IN/8A/Y7XbvphnvSqZx5vv/8Kf44f/+/03J1Q6qAoqqgq5/r+IsBUGQEEAE6XuI0RgMYoAQkBghBOg6CMHO0CU0RfTQU3eReZ8YX02MTwLTY6HsYd7pMnLpHsIIYRak3UoEFXtFgQKh2HsRKD2UAdIR0r3S30M6K/FciLMisxLmihRF5ooEqEEoQ0Q7IQ8R4guYGORBN2y64t2Iet9pgNyDdkJN2M1vz69KmEGKEgqIXt5G6UD9PkWBosQC1Ae3tflDN8e0fSayvm+ftc+DT4Fo16oRiFCjH2ufJXu9OEew77VzEOwGpPjX1O/Vx7AdCwWk+jH/Tqj+22zvJet67GHb1H4n/jmbtoCfT4Fq/aoCJa3jMB+E/Lgyfd3I7uWJm+dnhi4TRRGBXZy57Ua6UEkUdmmmC5VIIYVKxL4nKIEKIlSFQqQq5BqwTyGIoirMGjmVjvt54FwTcw0oQqmBXIW63LygClVlmQlRKkGU4Pe3fr72SVWh6uU5FOUmWVs+tn/GPs2g8MZ84I1xzxePj7ibesYpoQhaIY+JmgNkP5coROtwiUpKldDZOhKksuszh37iph9JYve69/4S1M6LboZmbVeSyiFOvNrdcV92fHk68KXTI57PPeOcqARUlSDWjzEoVYW5BFStjW12qEIpgVwCtcT13r2XQgBVIc8BqqBVrI2KLzabR+liDVBbh9ptu3zbR76GP/Md/zc+8egl3kt5VwrwT/7JP8knPvEJfuAHfmA59slPfvKr+u2HP/xhXnrppRd+9l3f9V1813d919v+VlX5vu/7Pv7IH/kj/Nv/9r8NwKc+9Sk+8pGP8Jf/8l/m3/13/92vvhHvQlSVP/7/+LP82F//8bcM6lej/BBXgMNg70UuFV8I0Pd+RqBPaAzo7UDtAvmQOL+amB4HppeF0kHes0yo7hnIDCELy0m2yq/aIidb5ddBOUD3FMJZ2T0DmZV4roRJbeGcqi1+c0WDUKNQdhGNUHaRzTP4oMN+CfrcVkZbdAdTGrXbtG/54qXy236mmJJva6AUoCoxc6EQHirnrZK7eL/93lYH+3tNrhDjg39g4+EK8OIcAVfqG+XjikzbDdT1dVF+eXPMlVhTZOKKMWS1Nm+a+FD5td9vFXn7kp1PCdk+rx1oEmoS5lsoN5XxG0b2+4lHN2f6mBflsoszj/uRKIWIcugmgi/WviQvyi9Sqa5smvIr2pSfEKVSFSaNnHLHfd5xKomi4spPyDW4UrDWbpVbUxKCKT+fNpvPTaqGzbGm/OBRN7GLM197+wbRr/Kl6Ybn88Bn715izJFxduWnMJ87tGCKQViVH4pEiKkSu+qKvXLYzezSzKNhJKAElBvvryhKVlfgy5Cv7eqkMoSZjw7PeH068Pp8w+eOjxlzYswdPoTE4P0QlFKFuUZr32aCi8A8R0oVV37bh0QJEbRCWZRfgLzdIV58fTPP1ebVA+UH8ONf+Czf/b/8j/wv//fv4cOHW94reVcxwL/6V/8q3/qt38pv+22/jQ9/+MN8y7d8C3/uz/25r+q3/8K/8C/wsY99jH/j3/g3+NEf/dF3dZP/+B//Y37u536Of/1f/9eXY0+ePOFf/pf/ZX7sx37shb8Zx5Fnz55d/Hu38pM/+lP82F97oPxUH7x/waoffFKEYFZfCCt3XTSLkBAg+aooYr+JER06VCDvE6UT5seRsjdrqOxsV0qAMNmCF4qsi5pgI9oWM/8nuhpPZQ8yQZygOwNVSaMpvFhMoQDEXFcLJ5pSKn1crDN4sRX1dpbVuxK3UpWN8nsoasrioZUjuMIRv09dv/tOt/SWUVxOKIuVtLUKF6XhT5BGWRTe8lQ1C/Ch8vN7XK7TLD9dL7WM3aZ90tpQuRhfWDc5i6X/orbKeu52re31W0eEzbVqt95v7UxxTx+fkaDc3oyLZSF+4ttuAlWiwBAz4koIvfxepG760jqsanDlI6YCBbLagn0sA0WlqVBTmtpu3Fp7qdwE96kQgl4MZRNXTX5sPYcCXah0sfLq7p5AJQiMJXIqA0/HA7kKU06LIqmzD3azntopAYl2teSWHwh9ZwN100+0qbpL1l9RlKqtDQ+V39quV/t7sgbezAfuc89cI1NJruCkOS9IQVGF/KC/mpTifV/bRNw0wdetmoMvd+Ibs+0D8Q7SFOADqShfPh357//Bj/88J/jllXelAH/mZ35mibv9jb/xN/jdv/t38/t+3+/jz//5P/+2v/nYxz7G93//9/OX/tJf4i/9pb/EJz7xCX7Tb/pN/O//+//+VV/3537u5wD4yEc+cnH8Ix/5yPLZQ/kv/ov/gidPniz/fiGlkP7GD/7tFxzVi5dLaTsqt/zAlFpTmk0RNj+Mu0fb91CFLqIpQBTmWztWdrbwqLvXAOKZVbm1OwuukzfKSOp6q5qAAHG0Y2l0C0IhFrVHo9r2UBTEm1BT2Cz4q4m0tYQe9M4vSvmpsiret5zYJJTVUmqPc/v24i7dWKmL0vh5rn1xqXaOrbXb/va1QrfuSx+bxaqSjaK7uPn1PNv91MWy9KBdumlDMy5or216bRTkC5u6/X274KZdgrk+27XaJkKT3VXpQaNSH1eGIQOQQlna0Idi+7hgHpLO/zavf71s66axzQrUTQ+IKLXaZ1O1mJ5ZL27JNYV1ob0vezF457RHDkwxLNdne+zyHH3MqCqPu/Py+/syAMqzaXBlvY5O2SqIJmEdnJjafVuLU6wMyfuHt/aX+nk3PXLRriSFXcx+T/B8GpYNgLZf+Dhsz2Suz7WtIrjrV5f2bPtGXHmqhrVt9WF/tY58MAwPh+YtX1f+wk99+u2/8Csg78oFWmvlW7/1W/kTf+JPAPAt3/It/ORP/iTf//3fz/d8z/e88Dff+I3fyDd+4zcuf/9r/9q/xj/6R/+I//q//q/5H/6H/+EXcevvLN/7vd/LH/pDf2j5u5XReDfymU//k3d/4Ycs5c312Vx7qpu/tzOtLaSyLAy6XVAfbFVMcT281ubfxppoi107R9vdL5ajv394rD1Iyxb1RQzsL1J0v1Dl1ySwKp+3EwVR/XkvJW/z/u3OeWH5vdPJtuKbgoeu0hf+5kKjPfj7q5C36+4XXeZFX9wqzHd7LRXQzjRo8EkkrF1l8TpTXi+Y3i94v75rI7ks3n49VNyq0weWWvv+27bWPnnHQX+72aGLG3LzOFLcQq1L/OziJ+sE2LZ7edS3Skfc6aPLhvVhfz089cO7Tr7bKf5QFw0X6rJ9b7vffrtJpw/XkbeVtjA9aORX8ZO3k2fTuK6J74G8KwvwYx/7GP/cP/fPXRz79b/+1/OzP/uz7+qi/9K/9C/xmc985qv+fkOLfuELX7g4/oUvfGH57KEMw7CUPvqFlkC6e+P+Xf/mLU+GtnihaSRps3F1xPv3fK7U1bRa4jh1fb98PYCKXj4cuvnHOvcWS6lheDbut43H6C3HmnPIfDD61rYtJ/8qjr0baQGMdzqPgIq8+CvKcq/64PA7ysUa+FW2FXB/FfLwYi9SNu2YPPj7q5S36+4XXeZFX/z51q6LJjzYHImCzLZTqzWs1/bPq8pivbxger/g/UYpLKpsM27+X3D/vsjaqU2hyIPzvKU9b/PRqhBedIdCRczlupmGSapZs6JvVVbCdud4cZ3mklyP6aJIV8v07e/1LRsRGlAIoj/U0UEzD3u3nVcuznT5PXnLxH072S4s27H7+X/yTvJeKT94lwrw27/92/mpn/qpi2M//dM/zdd93de9q4t++tOf5mMf+9hX/f1PfvKTfPSjH+Vv/s2/uRx79uwZf+/v/T3+1X/1X31X1343oi8cvc0u7y0D13ZUilbXNqWsA1zr+pkI1LrO+lzs2FyQXKFUuud2LI6++GTAFWHZtXtY55j4aS/0VtjotgxUA5cIkIemSKG4u1Hd0lMB9SaEXK0NDiZp7V9av+mmFx17V6LehsoSj7w8sUmNG8uWy0c6bFGUbYF5m1jEw2svGxFYlfCLFFa1Y9IAKo7KBC7c0g83LrTv+jkuXHGbNjxsl2zaoKybFN1YDrXFI8PbNHX7+3bBNl/0wXnbOYquceEJpArhaWAcky/Ecbn+VB3IUs3VP/vfuhxbG1c3jd0CY9ZnSAwnhtKHGTDgR3uW2nelDcQLerEhQbfK5XKx9+vLdoDtHGMxxPazeb/8/hBHQHjcnwlSkQ2MNnbV3bqb89fVIit5q4IMbTlm6x9ThLL0nyks5UGPXLQra+RUErfxDMCjbkREDIzUflHtvNszmXW+VcbNmhck6HJs+byKW5F1bVu47K/tnL04+HBoHkpbp95O8/8KyLtSgH/wD/5B/u7f/bv8iT/xJ/jMZz7DX/gLf4H/9r/9b/k9v+f3LN/53u/9Xn7n7/ydy9/f933fx1/5K3+Fz3zmM/zkT/4kf+AP/AH+1t/6Wxe/ubu749Of/jSf/vSnAQO9fPrTn14sSxHhD/yBP8Af+2N/jL/6V/8qP/ETP8Hv/J2/k49//ONvyRf8pZQXjssLt34PpLYJWKEUtJR1kEuxNadWmOflQqIKuSDjjKiSTpmYle5pJp4M1RdHEAQq1IaQjLpabW3StYnX3B+y7gLTCTSZ8pt3oFHIQ4BgEPcF8JLCYpFKUUshmMpqpfJAx7118/uLUoJxsvsN8/KUXH5HbMGvm0W9XbIBQqi6bhLC+vmLRLZvtpqoddxWObbX1teYsjaFsfmtK2LJl22Tdo/bMWv32Noibz2mGwW3jHn7zJHBNW6OPWykrudeXOoPFXw7r38ecmuDo24z9J/r0Crc3w9UNTRmA4M8n213VaowFkNIZnfP5bq6Dith05euYN3CWuD/CkkKInCTRqIokUIDyERpE90UUXMrtoY14EipcjGU26GWi5nTFLEp9qkEvnI+UDRQFYZYOMSRJ8OJLlSGlBdQT0g+2LFc9isYMhRPIfAPx9kgwHdTb+OmMGbrr+IAFmuDPwdctkuB16cboigvd0du08QQZnq/J3HvkKWVmBJLS39dzg4DpBdX6HIxcRb4Qtoo+OCvXHboC5+tt4u9v3c670LeVQzw277t2/ihH/ohvvd7v5f//D//z/nkJz/J933f9/Hbf/tvX77z+c9//sIlOk0Tf/gP/2E++9nPcjgc+KZv+ib+t//tf7tIjv/7f//vX/zdYnff8z3fww/+4A8C8B/9R/8R9/f3/Pv//r/Pm2++yW/8jb+R//V//V9/WXMA337z0nZW2wlzsQTbzAuu6MYR6Xs0RgMX5GLw6BhhmiwPUATmjGiEu5Gw70nAbkE6RubHdkfzDuhgfmS5fJzV0KAtN6wBMxwNqTi8vkKY7Tf5AERhROnv7RFLm5UwSKUQCLkSSoWzUocI52Jo0Bd1Tnu2fjF97u4hCWJAnx4QXVIGVnNXqJ0SRKhcpkIIpkBLB4qiQdxd6t/bpBUsP2in1wfvhUvEpLKJqfhPMwaAyYZfFDb5fWXJcDAQUjtHNeVSo49X9e+HjXL0H2rAxlUM4NMAQKIsIJxQWVzbFUNRhrou+kvXyUbf+flF1uujNmdqECRZf4UJtLNFuLsDqYHdTw+MX2uAi5vDmV3KxFAZS+LptOM2jfQR7ueBfZrcM2ENjxYotPlFNatMlSqBSCWrKceiZtH0ZCS2CFfPuXbMNTigulheW1ObYijJZv1lDUSplMqCQl0/9272hb+BQcThondzT1XhZ+9e4aOHZxzSxKv9vcffhC8cb1FwZRbo9rPlAVIgR7MA1eaGFqV4/lLsCqrC8dxRervPG8+bvJt6Dt2MiOFdFaGgDjhuSt3adaodnzs/4dX+jjiYWvzi+RYUxpIsraFCEGGuhgbtpTAVTzXZIOZSNAWXwVIhNruF6mtK7Ap5jgjVgFHZUXeyiYlun1EVKLqAw5YF9dKAfE9doKLvpf35KyjPnj3jyZMnPH369KuOB/6OX/t7+eLPfuWtH2zSH9Z8wPrW7wGECCkShh4kIC0NIkbYDZSbHUQs967t+1JEU6QeOsohMj5JzLeBfAhMj6AMgbrDrDO1XblkSLMsFok6RL9ZhrJNhm+uzMCSN5aOEKdKmiCMhVAUmRSp1VMshOqIQI1C7cSsr7gxrQT7b2NNLPJVzPE2EasAUSwJPpm1W6NZqLUDVMz1mM1CjJ4SIlXXOGdaLSUExPOWQmWJsy6uSnnrfWxdgev9y4WFtoCT/LUpvZo2CfEtVaKNxfZfa3NTgM2Yse5elRPrhvuh9RmUJSFesm/QM1BMATYvnY29IwIfuF63yn4ZRlfSgrVBBWrvxASDMH98gn1l98qI3Mz0Q6XvZmKo9KEQQ2EIlSf9kT4UulA8IR0ClSjKIYwkKQwhE1CKRp6VgZnoVpf9m2ug+II/lsRUE+eSzPp0kIziryqOKpW2NtNwkeKglmbprSufOVJRoXndAxClMKTCTRwZYmEfJyQoY+54Ou44lZ43zzvGnMglMueI1kCZApotZ47gFhP+vPmoh64SQiUm5TBMDN3EocsMnlPZSyEET+8Xe85TrEs6g4iSRHmte245lwKn0vHGfMMXjrccc8+YE8UJA0Sa6jSlivddk1KFkgO1iqdEWGK/BOs3ZLVktURq8YnRUiIe7IjXvzY7sAf+xtb9/+T/+f/6qpXgL2Qdfyd511RoHyR5O512aQK0LU/LQXiwn6gVMmjIhN3OFB++6ORCnDLl8YH8uCNkJZxnpNrKE3KFKdKflNpbAnucxUZtVsuR2yzkNbh3oti/trhu8wLNVSfmgJosOVyq512FQI2KdAEVRbTaLq+s+DJ1C0cKxLaLDPaJNuXXVh5VS2yHZWVtHy2HpD2S6wMQ/BShmMWjiLGQdEqN1v6W0iSzkE5KOkMcV+Xbkrxrh91fUsJkz2vQzX2ut7YxLtf2CFzGD7eKw483JSciZoW1Pm8PfdxsSNopHkyfpvAWVpdt/GSjMC+mlytO8UTlRn6gUQk+Nk1va1BCFSM4aHNB13bLQ8j6xqERsluXBWIRSoXwlZ780ZljSBxSIaS8bBIqgejK9K7suJWJXgpd8PiU2JiedOAmjESZ2YeJJJXH6cSzsudZHsiSqFRSCEw1UShkTRaXap3n8bNlnXVlUcWUWouvBakEWZVi845fzDnR5pg196FEo7YjcQiFFNUYWrQwdoW7ElAJVKK1OSpVKtp5ascsUGxdkLS9oFBzpEpAa+VYe1Rl2UsOsZBF6czWWqzVXNQ2E54kP2vgS9MjPtTf8zjdc4gzQcxy/uIpLDFYgxqExTXa0mNFVwdwiqYc51ks2b3FTyumgIMSkqIVtFZEPCd4QzogyMXzvU5evZzLejnV3ksL8KoA30EkPBiYFyIDmwX4AuWHNAc7qkrNMyHYMe0T5WOvkm878k0knhWdzRUUiicJR1uVSu9osebPLCxWT01meQTBmVHsNrRZS7C4YWzxhzAqYVKLKTrYxGLcFucxV6pNdsEsPrSaxVkrGuLCJtJW8wU00ZSKv0rLwm8K8kEvtV6rnudYnTJMg4F1yiCWf9a1PLTVKpNiIZcaDbSTO4jVYh8tcVs8uX+Jw4l9ZihyXwBUV+tMG3ZB1o3t1mLbWoCBheKsRFnpzqK5XUvytm+Vi64WXWNukbxuWhql2/YarU8ulGrTXHEzLcU3PlVsMW95fxVCEYsz+7htsRoiNqcu3L8Prl+T9X8dYL6B9IkTh689ctONpGjuuhiUIGYBpqD0Ids/MQoxg+rDXiZeS3eLO6+XwqgdX5p3VHOKkoIiWpg0cpc7ns4Hjrkj1+hYo7bY+k7Hu7mq7yO2bVGhaETdAhU2fYxSNtu76HRknRT6WLnpRl5KRz48PGcXZqoGfia/xlwjp5zIxX7Xp7wo4NOxZ6rJcuiiIsk2tKI2NlupVdgPM4d+5lE32uOtwpS75Z5SqOxjJgWLf2bvx4qwjzMiylfmW4JUupC5SRNPhjNTCdQamGpT67IuVf6qbj2riis3oZa2+feZEAQJlZqDscFkWR+Erbtk81Brm1dtbViU7ltXyfcyDeKqAN9BXowCfSCLBdhWxgfLe0N6+qyrVZHOul0++2W6JwfCoz3ldiAPgZp64lgIU4FSCaoMX1LSTSKdKtOjyHQTjBLN8nIXpZAPpgSbcozF4mALW4m4m87BLxqUOEOYfUtcPK6WhSqCBEGLErK6L8QV5VTMEgvifKP2QGhYzZqm6nQx+1jZanzNaq6hxWjcpHuoYBRvvmBrwe6vd4XgSiEfVmXXHUFnWeJ8YfSNQHTXV0NkWlPte8B6t2tfLcPL+nwv1Gqb920BaIpsgc2rp2hHn0Vh3W0vv2/XarHBzRRqylHdIqzOL0ryqbTJS15+qzYPgihaWh/anLCFTwhFF4W8zQdtp9m2u/V9nNfvAHSq1H82MD+P3H0sMbw0Muxn8xiIWSZaFXUCsayBXZzp1VyhxzLw2dLxKJ0ZwkypA5HKbRiZMBdndnqySOVxGuml8Fx23Neec+7IGi3Epp4eoevYRCBIoTQItN+7Ja8/dIeK7yeMlq1xgmoALUJloFThVDte7e+5iRO/ev9lXuqOPOlOfOF0y9Npz2nqlg3e/mai7zPnY0/OEZ0DEtV2n9EsVG3PTIVndzumOTHNgcMwM6TsQ2TPT66R+yoMMdDHvPCEigp3ece5dDzqzvSiZI0OiMkc4sQb44Gn54Hj3DMXi0GGZgEvxpu5hKtv+IOslp7WgBbIJRKTErtCDQEtslK+LZNeLubQsn4WLoFbbR34atbXX2a5KsB3Erl8gFbX5zpwy8cXx4UGJ7OdjbjrU5AYkRjRGOGlR+jNDoZEzBDnsnq6krlKzRKK1BSQau4+9V3Z3Cn11mJj4gsdXC7Uoa6TzpCkQhqVeDLlJ8XjiIpbeNaW9pnFodq22Z+crMS83ocGpfbBE/MNNarNOmmxMd8oLI9I2xO08yaY9kLdi6VnpNX6oKE9HSSyUIu1+xYsdukxK3FWqoaIlBYjc8tnIYJuikM2I/rAwrO4o5g1mVniYi3+lw9mqTZr2wAsZoFp23y0bXcFKWa5BB8b43LdWH91067282bktFhh6xt3r164RwsQxaz80c/dFNyyLV8VxtY7xeY0rV/M+hNKgroTygDzI4EnM/0njgw3E4d+5CZlUqhu8FazokIh+au53SJTjT4PlCkneskoweNRsnzWptqd83+ecmfW4YatpCEjS21WTHsifSEPZl00S7NZQfhV6tpaAnDTzQQM/GX7k8pNmrmJE68N9+zCTEQ51R2FyKgdXVJumUixUmrg0M2oCs/Hnpoj82xEsZod0hIVjZUQ1zUkJSWmys0ws+8mphopGpc+EdQIxWPlcTdam1WYSkcQ+6wxygyxUKswamKuiVOJTLVbYqqtC5p1lpyNRhXmEowQ2xGqG8MYqYEyiseoNw9MU3wPJpE9I82C3BzcvoJtDN5DuSrAdxDj8DTs1UMlqIsvYbt9ls3CYm/UVzup1WjR5rz4A8JXnqKnEfY72Hem9FK4sA5qcx/6AooKcXQUwyyE0QiyS+eTsP3WrQez2IBgMTBR293VCFKbm8wX5+V1VVqyAYyogERZJ3TdMLFMCkndGvO4h/eHVHcrhs2ucPMQqdh14wg1KeKLbu5ZkY6tfwF8UddmMc6Qd+7izasbcUt/VsVDla1v2iZh65Lx0xcnsG65lotlm4TiwCEV0KTUbrVum5UmLdaki4HoMUJAzB1b2wYpts2HKbRtDuF2kZHZLfpkba4dSPLzN0Xou/rqG6/cK1FtYxQ8lrO1/DY6cL2cYze0WZxiVqxZsJXSuxUTCvXLHWhmvomcgD7O9EEXC8UqPAjUSBADvuCKS4GxRkYNC9ADLFWiZa41kEaUyhBnco3MGp0P1AYseHwKIGj1BPZgCEgM/RtE3bLbrsArJZiIkoL5gCuGClV/zVUoUXhzGnipU6LvpjrJfHz3Jk/zwPNpz9N5R66BqUSqCkkKfT+hKNPUkcdGIt+SM9wiVMhF0DHyFT1w6CP7Pvs9eBsQzjnRSeYrdc8uFPvENxe5BoIqEgWpgYAyhIl97Hipwzam2gNqVjEGioliz28nmSpCFGEiIqLM44bUVjA3aNVLb2eLpbenWlcLUB9ssrbPF77BQRRJL0qU/ZWTqwJ8B1G3TuyRbKs1IMGP+Ahvs3rbKAd54NdWqAVJaXE5oIqcJ6KYa4YuoV1AY4AUqGF1VxCF2gdLVE/iC4mYe2EUs/QCXg5HkSzuamGtDCGQRiGO6khBDO3pt79YcM2l0SyG0HZzb3VaVDXFuXih3JI0F+vafluYXQttYqnrAyUENUuu9rLEucqOlblGdaF/a1aUFIie3rFYO8KFi1JUkOyur43VCFyiPF0nB1ciqFAOqyKUYpuJVrHBKiTAfKOWruHKRWtTGJsL+T1rdai+d8OysdhsuJuu3yrCgCn8mNd9V1N2pbVhEx/VimHaWUOGbXzXfmGzYK37NlksbbN8axQv8WQ3XVNl7gPdY+HcB3adsovZ93Xm8hxippPq4JPWJrua5QAa3ZiKkFUoxUAVbcFXZXFHzrXVYsBi6LXSCLRtirYGCb0oQWaKBqYaySV425QgwRPPty22zVpxGO4+zbZ5qNaOSnMrziAwRLcbSyAT2IVCGM7EWHk27hCxJP8ska5WzpMr3gitkkKI2TY+otbXCqqBXJRz6QhF6GLezB3rk/u841F3RiRTNZJr4JR7bruJXcqOsDWatBSEx3JmqolnM4ZnKBtYtO/aYlBCEHYpg0KfKmf3JOXJcjwXhgW39BZLexN/bd2p2lKBNmumT8KL5TDYBiB1lSsI5n0qITa6kUBjUlh3Noal1AVTfrmw29faDtM/czBMQ60BSAy+mAbo3BwQD0hHSzuYb6KVR9qxlN1psbDSNpYZmA0EIid7pbBaa6pIMLdPSUIJShod6pyr/b6tjeIP7DYJ3C2nyw6yYxpWd5L6bnEDDrOXBUmpmydBF2XV3JBSLZYnGcIOSi/kg99HsedGWi6f+vf8dbvpXK7tiAiZ188vrOQG3vWcydrZv+mxfa8mpex1ccWGCeLJryBQ9upAFG9Lwy4spqW/Fgxt6/duitD6TlGoYvfY7q81ZNPnbkAsuCsmu29DPbKsScyYa/Xocc5ZF/dtG+MmzRNcOssvtdJHHmd1YBICmpTpEXSPJx59/CkxKqlT9mmii8UBGOb6PMSRuKnAcDEe0kJGHuXSFRzTrLTqfyuB6rsE60632kQIum5AE4VH3dnByObCLBrIOhCD5xOaTWp9KOKWkPVAlMIQisUjNaAVZhWiKEOYGcJMJzPRLcKTdsw1ciwdc01MNfL6+UAhkIu1J9fAcexMoRfbJBKU/mZi6DK3wwhiaRd3p8HAPRqYZqvmsO90yc0rhj+jj8LTaccb494JAiof3d3xuDvxSronBpiL9V9RGEuwFIlQTLGjzNVDK/4YWu6kTYx9N1POA3fHRJ2TpXK0TXSbgA/l4pj6/3q5A+3Ksjw2tLEESwVZCLuvIJj3n6iIBRIW6rKNrvMo8uVOZzOI8pY3dh6AaUJTWpK+qdVcpPuK7jp74ANIqYgGulooO5Ai5H2wdId5PW9JtgiThFoFOSjMzSrSFfFXdMGsgNfbS2apxagL1ZqvIyxb9+DtWCyxTSdtwRibHaJsrTDYfml1KfqHS46bWy1Bla465H4yZGrdmTXS3Imh3UdLAXDX4HKeB/dXe7PctvX0lo1wUziYIo0Kw1Mh7/0SJ5DeUZA91K4SRzFasAnoDVSzgoBY+227AaimUMLs9zWbxrK8R1M8cbTvtb3ChQup9Zq6JejpEjJY22vv19kruSmwk6eHTJ7UPq/nWEfAFGV3wovL+j0nWdyhUqG7Ay2Ju/llhldPDE9GkI7qiFnEtonHOtBT6D2/D5oitCclSkNr2nyJPhhL7E2q56/pMjgN2bmkMIgpzKbWnucdfTQl1hhjXpYTY+k4FouHNQszYi7cUqNbrJa0njWwSwYy6dXcps/nHbNG5hp51I0cggFMUjSO0lM2MM2r+3vu54ETHVMJSKg8Ppw5zx0hFOapp2Rhuu+gt9JD+2GiS4WXbs5Wx29K5kbNiVoDfSr0KROClZeaHc0ZpVKIqEY+d3rM8zxw2nW80h05pIlEoajwcndiiIUuZJ7OB55NA6fck2tcuEQVYSqmfOcSGLrKr3r5Gc+Oe+7PA/OU3Kshl/Nwu8FrA3whmwk2B0tD8sLAIVVjlnmYevMeyFUBvoOIiNXsa5Rl7gKiNteFrgN4YXqw2dH4q7tEtdUBjNFqBcZAjREOPfV2b27OKBCDJ1QLtQsWkxqEuoPpIG5lqaFBxWKB0RPiQxErFFvN9aGe3tDyyyxh3BGdVZcK5CqYEl3MBFlacKGyNu28mL/tGQluFSY7aaMJa59daJx2zN1uLacQWIq9xizIyRLel40Iq4HaYmiLIt3eUm19Yp9pu35jsGC9dnF0aY1mya3/xODsy5AK5aB28l1Fukq3z4TYgo7mwsvZfJKqSp2juarPK1eZ+nyKk5WmiqP3qV9nm5aw8Vyu/eWKE1fwmuwLcRTivdI/xwBP4wvG0K9Tg1u9CfKtUDqhdGpMH7L2TQ1QDhUOlccfuWN3mOhi5tDN7KNXfBclSfY0CKOzacyU7dqdF6hVwS01YR/tN20+5SocS8+5dJQF+BLegl5MmNXZSaMkE8bSkdWqxM81LsVzVxJ6szKLZ6W3Wn+iMKRitfhcGU41sIuFAOzcpSsCo3aLi3XWjmPuOeaOsSbOpbMivVU4TT3jFJnGDi22A7q5nbg5nHlpd2afZpIzLp1z5Mt6yymbL12E5d5VjZqtPUUzNtBRLO53rmbZplCpGqxGo1gayiCF5/OeopFaV0q6LRPOnBPPR1O6WkG3LDZ+zda/i5W3rHebmbVdA5dXpTtMxF4vUqctHAB9t92t/srLVQG+k4g/OF2HlmIWXDCkgqpCsUD1shpvJsWaELpODpsAFc3Zc7KUqr4gnBOi98jtDj30NAi0qCLFUBcCkIzKrAwKUUhHWVxVeQB6j4XNBnkPBUIWA2zMLaF9k/cmYnlrbZW6SCpbbn2Rt9uwLZtBn9zmdjSE6FIzT9cv6qK5ZLHILGapDhqyi5t706pS106WlA+VB9fdDtvWwnOlV8T0VfA2msvVE/XF00VEKX27T0GrJ88HFhi7BjUlHQxBN/QzEq12XYjFXDtBKSrEUJlzpJaAxAKdU3aJxwEn28iUnY1hiWsKy6qlltFgm0K2rE0Vwhn6yUE4ydqhEfKNL1Zirlupl79f8hz9vZxBWtFaUWqS7ZARRiF0yukrO8okDPuA7oSchH1nOX9FmlVlRWWTbGNZ1ufRXW4DM1XMAjuXYOWHfLHdxZlOMrOaVWQuzeggRK8W74jEgsWPLcOjELB4XwpADc4WE5aUiSSWul61scaAiDKWxFwq0UsNdVLIVRiJvD7uKZ3QhcgQysJvGqWwDyMkhdnnuiaUSIozmuyZmycDx0xzQO57tApjH9l1Ezcp0wV49eaeu2niNPVe+1A4TR0x+D1tAu3i7uNchTp3/JO7V3h93PPqcGSfZjoxBG6ugZc6K+rbycDTeUeku1DUVZUuZgrRFK3UbSB883ytD1qrFbqShWx2JpuHXUTJU6LkSuwMsOSzkhBg34+8l3JVgO8gF4UjPaF99e8pKsVg7WXLgMy6W3oBNrghI6HpC0daTjPsB0uRCEIdoi1AHk/T4O6iCeogxjbhLkopLOkONYF64rgWoWZzg4YsRIWk6uAXuwGD9TcrdbOwPvRoLJ3y4G9ZX9Qbv77f2pAs8Uj1PtommV9cdxM4WvYQKub2K6xKsKUAODITXa1AYXPMGVDaCVdwk//tcdSyE8peKQO2yBTvG1FUApoqui+LKzgjdAM8eXRk6BuKcE0snktkzJFx6shzIKvYKu0UMipu8LpCFE/xEGFF8K4T5aJfwfvB43Wh2txIE1Bt8xNnMaq4eXOuTf8jq9KsnVAHdzMPbgX7/ai7wDVAnhP9o0IYKqG3jjbUZTAuT7GYVYihgYtJwblSfOFOoSEQK8kRl0VNdeVqiko1UN3qG2JBpFA0M5W0cJ0OfSFSXOVZn5+LuSBbGsFq/a2TtKjdZ9cALdp4R/FkfgOyzMWRG1Xoo7kdd6EsgLCxdEbJ5jFHG9O2xbTXBZWqARogZ5dJXSXGChIYa2IXZ0BIIRGTUov1UaN2qxpXC0qNcMDuVY00ADjVnqcZMuOy0U1SqFi8ctQeJRACRDXlKEGIwJgjuURq9t3ldqIFXSfPw8e/AWGWDX772frMS2jKrx1XulTpusJNP11BMO9XkU0RWNt4NfNfzRqsFc02ce0H/t22GVrNwEUWgq1SFoXaXKlyHAnRy8bEsLoLAysEOQjpVC1RPTo1WFxjNTVB2a/XCzOEEfqnpkRrNOVX1azDZgFsFUdrwwsV4QPLZHWF4IrMyaebgmpf3rhclt+F5TQXx1Bd0gRWS8fan3dC2bmlA0uVjFB5K9F1u0dhYfVp7l0Vc/PVAKWrzB+q5CeVtLMgYCkCY0JHR+32lfTSSPAHd8yJPhY+/uQphzhx242ctWP2Ro8lcS8d4xxtqmSBGQOuFDXQSwPDZLm0yAJLCSwqC0BHlj43lK2oj+/k86o4CUAxL0A869IPrZ8VU2i18/xFZwyq0bwKFhPefLnt7drmLRSmoPROvj5ppEazyFQjJQg3nXk4kvN/Jgovp6Mlw0vmXBJn7clEJo1kNeWVNboTwhMhpLpjJTjfp9JFy7OrKg5I6UGNH7MxvjQSaFM+rRqEnTOK8WymUKgbJGl0RZ6LXa/1mDp4paiRYx9zj6Cca+R+7k05Y/l3KRYOUk1xYs9xEKVkXzukEvoZtJLIXjpKqBKY6mDeHmstXTDlp20d8W1qlMrj4cRNmnipP3EqPVON3M09qDIX4U57kjQLrCNgyo5qaRw1QCiNeNyqVCzhHKmbB9d3lP4vpGpLFhhjTPYFwjcJjerBnlkl9pmYlKHPKBCadwFb+g7dyMu70xUE8/6VttXexLDaQIlYSoMIuilrZNbLJevHhTT0mgiSs3sLIsKE46HpciHMhXzTU/eR2kW3OsRAHBX6qmaxdKbMLPnbeTpP7g6NWNmkJIydGlPKvdjOMQvMuiyYiyJ8y/2+tTtg/f56XC4+b4v3lpD64ema12RrLZqbyjadja9x2UdUK+cUiiMWhzX2FWZTGnHG4P8PFfVyb7I8s1odTF8E+UogzsL0MvCoEnYF3WUYC3pOaBHmpwPpJiMB+s64Lz///DEv7U9IhNt05iDCWCMpVIvBhMLzNHAfe8bYkwNwFlQcyu9KT7PnoGHI3Hwwiy40QoJm6bY2ZXXKE2+SYi5a3M2bLD80jSxk2W2opLKgYmWweRPE+q15X2vaXMvdyYoi5whfHrgfI9Pjif3BauQddaCPMyUVyiTsU6EwsY/WT2+UAzdM3MaRXZzZy5Fz6RjpLF2BiFINkLKZFJYuYoqhKSxESIIdUacGq+rVJdQRqNVBawEJSmnuUmcUUIXeKdyKmhUUtXrCeF0qrYMslGJDmuncrdcFOHSZ05w8HljpYyGJ8qQfGWPhfrJE9SDKaezIc2I6d9TOchkf7c/sOquiYZ4AoU+VEGZOc6JqsE2ONAeG8aw+HQ/MmlAJPO5O3HQThzRzLD1TSSgVbVa24pa0WvmmEs2DL0oXEudibue5RCaBkiMlV4sZbHa2ApbGAQZm8eT9kp04u7l0Gk8rxncKlUkSXedpGsH6ad9N9LFy211doO9bWRhQmuvzAa0ZbecSIprzurC23+oG4it2THXdBRHMBUGKSN9T+w5ud9RdT73pqPtI3gdHY9r5CG617IQyCHlnx1SVOqzghQAwrYqovzd3mIFf7H3ILDltW33xEKOyuCUbcKShTzZ+SsVBOi0NAP++uouX5vxY+8EWf3mLpamwujc3fdrcfaUHib7QO8Alnjz2uU3naNcULq6hwcIb1ZGd8xPQx4Xw2pk+mVtsGjvqFOHk5leohNtC3BUO+8kskBJ49fael3cnftXhTaIocw0cPHftmew4FwMw5DmRpwBjghwsT9OtwDBj79WBS5MrPwctNcBTHLG8zUYE0CxmTyqsnpfY+E/jRMu1vtjYNEuz7mC6EcreXKDbQW/J/gsZkrLEXjUIokYKMNWElsIuKEYlXUjB7K25dgjifKCmbCZNFtfT0ByXTDUxaefoU5sbG4oFtw4qnTs7o5cjmmpARYhayHVnSMZqjCdZbVFuXJchmPrYx2yKyitU9Bjf6KyBsXQLx+dSVcLdrSrCWHpOFY6zISlpjk6xuK8hQpVShSlHznPHnCPz2QAmoHRDpusLhz6bk0eULqjX6jNLdq7R0kzIdMHqIbaYoGKE2EMsPOpGQjCwT9ZIDJVH0axuQT29xD0farHQEKDXQtFAipW9zAtBQamWdiKZlbLMd1ehq/R9Zuizxw0tlSQEpRSLJWp1BSgQusJ+mNl1MzfDROeVLPClJEjl1eFuAT+9V3JVgO8kbs01H5I0626jBFvSMylZ8VtPirfk5lb0U1cvoFserTK1xQyyKdko6Djb4n+sRO2QHCm7aACQYJRUohBHoxyT2aH50dxfGjb8nxtX1ryHGO0BqMFcXulslkdLH1h0xNZf1jbjujm4cVcoLGwtIatZfY3QWjwtop1k60KWzW/9RM39B6xIz2ZBBu8mT5VQd9s1bszSmVILgcVKZntuWK0twTg6IxCUeLL7rfNAflLQvhJCIaRKuSkLKq6eA1OO5GnP7mAP92nuCFqZ88u8ujMAQqRSAzyKJ+iVJDNfkVtOsecYesopoRLNja0CnaN21WK7Qbw/NzRpppCUEoQQdWG7oWDE5YITILQcPkdzOsk2bWy9z8U3DX1W8mzWdO5kcbcuFnlhsTSXNBNAo1C+PHC+yeR9Jldh1wlzCeRupguOoJTCs3kgx8AcAvs4WzV1YMQ465JYHqFxgDpl4GYabt9VfKF1xdRKIvUh+4Y0MvsNF20xOdbvA9nnlmigiJBEGSQTY+VMR0iVc0nMJZIxJToVe3a0QhcyQjXF4+kEjYFFmrvQLa6gFemVOUdKCcyTveYs7PrAlIz/s5NipOJSedSdPZfQHKKdzPQxMy9xQEG0cj93BniJlZs4AmpxPE8+aXUWWxw0tQQXMSU6lshcA7uY2Sdh7DruxoFzSOQ5WRV7hwqXKRi92hwYhmJKXyoxQQyWtlKKUIqDjQrEWqFAzkJC6VJhiJmdp6uEBRDz3slVAb6DrHYLrnXMjy4tqR0M1VRAalkHUy7PcHHCxbwKi1Ul5pNAuh692VEfDZRDsmKZ0ZTuYjRWZb4JRrnlie5BPf7luWFpQQO2HTtr1YHq/jKxRUwcGfrQ93mxADVL4wV++q2lVYXNPftPm2KVF/9+2RRs72FrSW/uI4jFOsVpv2LF4mrarB4uwB7b8y7nCZhruBPKzpK760HRAeK+ELpCCJa2UOZohL+Yy0eSIsl4HIsGxpK4SRMxKU92IzedlfSpGlxhRWIwUmgRmGqk1miWkvtkgwrBF4zmuWsMLaKs8b8ibhmuxX8verMp+YqTZ6tXgXjL0NK6gQrFN3U1eH+6D7TNG9uw+aYGocTmkwuwn2Ew4E+tkVzM/ZirWSNZjankcX92dhLrWysZGym1lTkKS9xvnVWXjYtY/Cv6AJdqMcOCWW6TJqchC55ov6ZgtBqAltheOKSRPpo1WV1R5hoREePS9FQCu7R9HkV9cwtZE0d3UerFxNXFWWRxSrOqck0UB5cYyrYiEig1kqsyZaXri3lGfLLGpkABRTmkmUjhVHqKGrXck+5spAPieZIIXWcxxLF2zqHaU7wfjMGqcbQqN2nkVPrFGs86c9OPvHG84Tn2oGkF1WpuzhyQwejUYqhLG/tU6L0wcc6JPIcFGPThmzte3lv8txFDmSPL0bE1XEEw71eRsFZEWFx6S+BKl39Sq8VH2ncXD+lGAS7GpFuRzTnh1cplN1D2kelxMpRn8kWomUkY6lOBeKqEIAs6D7B0g0Zc4yAIgrtIq0G9G3pSdE0q1yqkSS8ssctO8Nf24VtAPeurVMs7K0k9p89BBrL5+YNz68P3sp6v/XYxIFm4dRbrZ0nfaN9t+AV98NtGzN1YTpKzu1QMlJKhHBNFonFLBr+L1DSSElPxWGIlSCHFTB8zt+HMIUxMNZDFctHGGjjOA8/GHXOxJGdRJYS6uNbCHGy+zIqMQsyy8JwuHZCdw9XzNbepp9vhWd57v8Sy6fcXfFfxvEfMk5Du27z063tahjoqVGFhh6mxQqfoHAixUnthbtaCRK8BEQnJEIpjSSRJhqysZSk/pLDk5Fm8tyFztREiWU+JjfusgVkD0WdCVeE4O9EzuliWi9vSlWrAcuJSqAyhEH23UH1O1WpeneLAGsUQoLmaFYaYazIXW/And5Gay3DdH8YIaF0ekVLMKtIC4jDt1Bdrc7bPc+moCqc5EUPxjYLy8u5IotAHs46bY+QmjUw1kqhWTFgyQ5xRhEghhspOTNnclYHneccXx9slvaRqIEnhJk6L5ayYm36siUiku6mUItxj1SyoWL5yFubRer828gxMya9rnW0QgyhP9idafSoVrPC3e8eCwFzFUMBXEMz7Uxrtku14oSVhL7ahCOq5gSKWDiHRily+RZEovnzb7s/yzKpVKpcMz++JtdJLYH5lTx6ScYKugLQ1j2tjlC52Uqvh5YnLWgE14Evt1VynrL/XYAQNtQtwVOK5LqkUl0VN3qZvHvy90AKq1+jzpWgBnzxEdV78eH25sNg2ltuyuKu3Na7fW07j/bPE/DaXbjccVFcGlQwxCBIDuZmOwTYFCxrEzTGJVictdJkQDNo+5Y47V2YE4UO7O3ahkARiSSiZohN3cyBUA2yIGrsPoVp472wIR1FH5lbW6hX4/XR4RXvd8LZejsNbFOELBmn7XcEAMqHCLOIsMhvr0mOrmqFkoe7UqEUHIAtlAiRQp4RQoIeZhE6KVmHXeVpAtA1eZaDGgMaZ5IFnQ32ucbrl/tQVn7+aegNxq6FVdwiihr4tPafc0UBFwZ/blgoKwqwJtBDU4nUCi5UXgqEhqYZgRiu3/cQxC8ccjE9UnXhbhC4qc2n0baaaClAL1Cp0ySzdIRVm8f6d7JnPUyR2piRUZUmY75LlFBdVpgJTSTweRh53J/YpE6Qs9zsES/0Ya0ToEYFDnPwRsw1FksIr6Y5HceQmTnx5uuFUeq8paCkTRmAwM9do9Ru1MMdIXyrdS2/w+umGrxwPjFOHqhI6G9s8JkKynVaMxaEB1tMx2tOqGvjS/S1P9mfzkARlr9k8qirM1QA9N+l0tQDft+IDY5W+xVIXNovpNvFlUXo+GRbO0OVcWC6hu5xEgjHBpGjxw90O7Xvq4z3SdyuR9Gaxaw+/NsXi4Ac7btB4xJGQYi5J7SAUIUyrS6ydFwxUEWYgBnK0FAoNYhRqFYtNPQDLbK229toUlzqE0+5p+72N9fii1Xqxdl98XmPSUXNfbsohbU+/Pe82pUDFNgG1F+ZbqINSe10SzrVzpa9AMcAJm/ptsSvErtJ3mS4V40x0V9ttP/JSf+bX3L5OxRCgz+cdp9LxfO455Z77qTPAgLctVNBjJJ6EMAbi0XhZ052uJZFgLVa8UXrbdJUXKb+t/HzLioDXg7QTWu6feIoIC6hGO4uxlj3UnVIP1RK/UyUOmZSqofyCbRqD56+FYC7RFCqdgBI4lQGKV4m4GOoVUGL5gc1N1kBjKyymgWhGd3kqjmymLC41Rdk5IKQP2ZVDJYmux7DFOBNppNe5RqYauJsHTrlj9uoOhoEz8Mec3dVaXtDD0YBNkbrE/coUbX6FSuzqJh/O5pxWYZoCE8naL8prN/eGlu0yQ8wMMlMwkE8hIhg7zaM08TiePOVE6bAE+OSB36iZNwgcktG3tSsPIVv/qiExE5Wz9pyqoXJVAjFWK/OU6hLbU6moBAf+VILnIlrf2GbAHD+Fjz96xms3x4UQffQHt21kHsWzz5WrBfi+lAZ6aTtv9aKwDWK9SADxmJ7WQuMMvaggoZiSFEGCl1gqsKBLa0VyJuZCeLQjHAbKTUcZgllpTTHIog8MLRfcjYUsC3r1vMHgrlB1Vg/QhX+x3ZdGofSmBEWVdN/cg7Io2ZrwfDXvF2/SVsGvlprFRHFrcKE4g9UafKisHpzr4rzS+k6X3yypSm2PsLX2Nj9fkJJNG5dKvF+L15YeA3hkPJC6uZfC4kMsGiznrUZyDkxzYNcbkvCUE7keeD73vLa75yaN7OPkLmdbwCOFU+44KwxJyb2Sn1Rq7NBYUYloVGqEeGxKydviMaUtiws+bX5Jlwy3+iQoDlhcYpJe1wipkBuZ997AKEUj2lneXUqW3F1UrHp4HZi7yDlHDs4UM8S8MMHYpufSjG+4RXNgGG9nm/TV/bOJjEgghMrseYQtHpfEEtUNHIPHBJPTsxkMJqtQSzLmGTELMwrcxDM5JLPe1VhejvTGlelxXMFQqOIQXK1mwbbZV4pSa0Qk0KUKsSC9IyWLWEV1gRBNebSfqs+1lgb0lfsb7qeO4yHxeJjYxckrbjgLDHDvbC7H0PE4jezCRIkweJ95ij4f7d/gruw5FlNwlkNpRWUaYrcg9EykMLPfjdzVHY9Tz2038nTc8XwcOE09tdoGtyrMs/V52+h00RCi6rvZLx9vOM+JVw/33PYzyV28nRR6p6/Lv7Sz+F3LVQG+gyx+bV+FBVljTs061FYLq33A8ioXFo+/95QGCWYBWj5hXFIZQrDE2KAQjtkUUh8ofUS7QO2U+RCpvSW1v8UiaJaCx+O2hV9bzLJGSyjXJFYZHaP9imeHzRdg0kt35YMFd7nexlprvYRbXg7yo7k/efD95Vyy9tyF1ecfLutLePC6vZGtMrywSM2yqTsrtFtuq9HIOW8mGXsfdXU3tyoabgmKJYkRO6VL2VCBOZKjsHNW/hSUYx4Ya09RYa6B+2nglA1NqG5F5JKYpg7uEuEYSCchjLIWxmW1uK2A77oB2/bXi8bkFypLF8ralYK5fGmI4ihWGaMDvQHdFyRWJCohVmLSlUYNIcZKEAOXdKk4WtIAQEmKKxFo1dwFA36gZtmkoC+8UVUcPetIaww921DV1ZE7rUBskOpMNJZqMAQj6c4a/J9ZeFkdVKPiOZyF49wxl8R5Tkv1iOaurRd5cmzeB3+OMbJthZwD1UsRiVSvXxioVd1laJtU9QR+deb0uUbm2lF0pmjiWOz+GkJ0iIXq1u2pVqPYU+NIPYSZXZgJWniue0dtKkM0gvLoij+JKaR9GCkkTqVjrEqUE4fdxCEVDmlmlwrPusJx7Cnq5eA8xton84zlbATeXbQ0iy5mDv3Eo2Hi5f5o4wtLHDvTkLPvnRK8KsB3EHuW7albqhs3Nl5XJuvCLatLdPt+kY016C5TAUOTFq+glTPcHZHTSNj16G5AU0DnCFOk7hLTPlGlUiV4kVkxa0h9Aa1m/VGUGpToie6gRnfVC3lv7QiTLbax2sOnQS3O9SDWuCikrY5vCs9dtVsWl8ZyguIEzboqxtYbD6zATQ9dvG8lbxZAx0Mr8kE3e+qhvRevJ7iUNLIGSGUFNjWll5vi1vV1cydahXkyFv+uqz7EwpQFNKC151k1tx9YPE9VyJODKeZou/85ko5QSyUUj39pi73Z5qj0inoOX1DbSGnbwPjXFvev93Nrxi9kKVlaumnywsmaxWrXZfVyThWd1RSjYBsHVWpdLbfU4lsYXddUrC5fCsGYYYLQR2MlSaJ0sZDEqjBED9B2tIROsVQCd2sWArMaHVqieq6i1ZEQVzyT5wIW27LikUaKmhV/LoEQBKEa/knF47B232MNHIslcUfJBJHFqlQ13teW+9OsvxUEYopxntsa0CaksUJUD9CLo3xqtc2CzbF1n2rE1EKtyv2UyCkiXl+xFbKdS6Box1QiY0w86sQVirk/d2G0ftLCwOScv6agOykkCjHALsy+xhVu0olM4Gnecao9Uwj0ITLEmZsO+pQpJZi3KFaenQeyBg5ppgTb8OzDxK7P5BqM7LsKz+aeXSx0ofoSav0/102JuPdArgrwHURLWSa2gCnBGMxlWVwRirCQZLfvtYT55Uh7e7l6a/XQv/MhChGKK8ZxRnJBug7tEtJHQqnsS2V6uWPsxCzCZmVFrwpfQCcv5zcLWqotohVkapaEkG9g3glxUuQkpHN1i2O9Rdne9lb5+ecqLBRtrQo67lJpgJiQXUHHZinbCV9kQa791Pr70jrBdM1q0XL526XH3TUsGDtMAWM+6dydG9VTNZSV9d6lulKs2E59QRRZYL/UiORAStnvLTiE3qi/FCH7Tr2qGHK3ClWEGoJRvKWIzAFxuiwx82dhXCEK2ll/6bKBcY/CA2u4BgPOVB+7bVO+2iVla0QrXJCJB1Er2xRAjwoSyAlyVDQF22w1tC/W/qZM2gIvGBl40eiKKVBU6YJQg6Ui1BAIzG45mnUwhEKUTMUWdoed0GtlLJFJkqdyhMYXQBDlJs5UDDFa3CVgrk6T6G7l2UtptGeiilWnTwEOydwAU62korahqZZPZxXSxMdkITf0R956ss0N20yALvUHbfBUdSGGLsUSygmgzbJUZZw73jze8NLhnj5NNi01GgmQt6d4HvKxCnmOzDXxpI8gZ748P+bldOQ2jZajq4GTBlowOgalJUn0oZCkkDGU7Ye6e0519jqJxWN1N2bJOvozivKR23vOJXE/9aSgDGniWDoowmOv0TjWRB8t5ljdWg+OZjiV/moBvm/Fc/60+YZaRYgtI0z717hB23vAVxB7e7FBDOuuvrG8LO5SL5uEfc9eBI2BuuuYXkmML3dMt3h1BF/1quWIifpiFU3B1t6g9nFcNZoodPewP1cDWTyIL11YVuI707ah9UR6cy/6tRw4gYhbhBtr17+nwT9vmnWz6j5UhMYOs1p+zZWJd9NqdV/er7iCnPeW2D0fFO0V7RR2BtyQWJfFSicPJDrptTZTKih0CqEiwUALrcpDu34ukRCMkUwkMs4GBy9eUkYEUiq2KE0RzhHmQDgHwmTlq4LnZUoDHG2mjSa/H6d12w5J41nVAFLE6jw+YJR6t0tKs97aJqM6CKb0LKTb+dYs6rwX6ASikQWEqKRUPRZUF+B0ilbFIPpYNqiwuCvQ5rqlKHRe8UA1kLHFtVGbNcaYGa9bVy3fJ1G9aKySPFWiVXJXVxLRYwSNZVPxuCDQOEXVFew+Gol0UeELp0ccc8f9vLNitfWyGrpIc1euk7kxHKnKUj+vxfYe9rX6pG51RRuGzq5h50qx8uTmRJ+q5yIaMfhNssE+lW65/6oBIfNSf2IIGUXYhwkFnpYD2RGyhzgTUDrJTpVmLtAYLH0+KBxrcndxZsodY+14Pu8hCHuZjYEG5T6bi3+qkS6ZQhtS4ckwso9WQLgLlSfdkRTWckhNnuWdMQldLcD3p2itaKm+IfMVNratd72c1yIsxXPXbNi3rtYKaHW4tWuXWiFGFoaZGjbKNtEK5oZS6WtPOBfCSx3zrRfI7e30tbOE5nbqGoQ4e36i6MIrmaqRTZcEEm0BDq1qtT64VzZv/Vne8uXapreBhFbrb+uqXAr/NgUSHpy3vVlWeV3+vrBO2rG3rimrgapOJO3nqO0fWF2/JEsNPZJnjUvwBctXOE+wX9JQYjuXzQED84o/uIaAE19ooxSKmGtsGiMBcxvlwSpKVCIago3NZEQEDRSosnFjF0dhHryaQ2PBYaMozatGSWZJLcwxb5nJX52In7PtUYLPh9pZ/lv3DMtJnKA8thSIcmMIW7UpbO1K9szMGijBiLKTWw3iroO6RVdqxxALpVqFBk+nI6mQBbrQLIZKoiJeELYVxAVndxG3jKSQa/XySatnBrdQN/srS4b384wlEsUm0cu9FZe9iSNPpz2nuTNFWGRNwwjCdr+7KkeFxTJ09//muWqKQFeNd+mG9gleivDlpwcOu5lDP6K9oGRUO4tTSqZKWOKCY038k/tXeLk/8jidUWAfJm7CZC5PtfSJSmDSSHTFUzQQisUDA8qNjMwY0vbD6Sl7mdjHkS+Nj7jLA2MxFOoQZlJX6GPmfu6pKozZ455V2MVC0cKsN17z0bwmWQPn0mFpH1vL+FdergrwHURgrdoQxF2f1cofbbczqjjbLhdPRDN1hBfscDbW4db6Cy1Y7qhSwahdQkQPPeW24/ShjvlRIO9YUh8IGJBiguBBolDNshFVr6+nizs0qFplggcAC2/Eck8Nbai45RF8QexMgaqtGIsFc3Gu9kPTMZdUZ0sHr68LLyisiMxmAb7g2Pa3zUVaIpS9UA6QX8lwKMRhpo9NWQVLQB6TEf62BG4/v/0zcIcx4FslawkNhq+rO1ZbDA+qkwLX2c3jCqjYtJic+3MS4iwLI4+0fER3c8aJJQ+vtSs4y35YrGnW1I7YGq6WJxh1ySH8hYjge4Bom4XSG+dsTZYGoR0GhLkBHRR5VJChElMhButfK9HD5r36nlGWDUxVU3RWyqcyRLM2eq8eEbzwrMWNA0UrSFwsvNWZKUZI4MjPok05mUcZUeaqlFa/avmdelV6szLF+/AQZyLKrJFjHvjy+caqe0jb+ypdKF41IlBKXMDgWyRo02YtLLC13pe+vlgOZH3Q1qFHVRi6asCSpPSxcNuNPEoTu5B5lneci+XTtfXFcgbt2sGta3FtHwIkCkknZiJ5UYaWO9gAdRVnjCEzk5iIPJ0PHGu/xPtuorHInGtHqJBEOZa0lLq67aalUoZthiJzWdVNBedTlasL9P0qZnUoUgqam49tM5Wd93Nx5S0mypKJvliB6nVEWlkefCe8PBruVlVVR4fSzDi0VOqgkDM5JsIpI0NCkqVlaMTy14otig2JVzq7tkRTpGEEVI0UW9eFsllOyzRUFnegWXNmWWqCeW8xvbxniceJWy3BackCXD7xm2ZuwS9v1buXinezliz3uLUs27rRvpeHZdCQlElzRUqBYpWnzUpwJSEVYlgs2PUCayc0LkWz0vGCtL6h2K535k9Dx2DxuizuVg3GtVqFOGGMIL4BaWZpK/wLprxxSjQplk6iArmzKbXkCLZ+qVhsVaztQcwSTOfNOLwLUcz5UMVii9UdGSU1JK2iQ0X6SjdMnqhe0WYTNXejWzRWI7BSqxBC9UXZ9n25GGJQHZIv7qLrfWCjW05zDQgrqlNa3phdiaKgGrwafVnmUZFIrmLKVMWrOq07p1ZeKUpmF4pbo8KpmqJNIfOR/XPGknh93BN6a0epgQ6YJZJDZcpm7deSNpbe6s5oirytJQ/7WzbPxnLclWEKBgQKZiajFcac6KQwVgMUdTKDOp0ccModnWTOJbIPgZnILmVMxUGgksXaYQ4op7JTU1LF77Voh9CTvLzT43SiD7NbbmFhkYkUUtc5oZJyLj1JjKGnD7OlOhSHq+uW8EAu2nt1gb4PRd2qWx84HvgvXrTKty3fg5W6kWZvv68Pj9l5pVajR8sWg6JWwlTQLtE/L+guWS5hFGrnSsOtgzSBZoOGm1vUw4yzGKVV9juafQEG1jD+ervAarnhsUU1JVd6sfjQXqi9Tex4tjQKu/7ixVlpvdquWDeKc9tNtB2z9YlsbmXjFbq0/La/VWM2KXvL76tTgl22WnUdVFH2g7nAzkHRU0cem0mlLFa6uOZY3tv2P0RrRN0Mf3tmQ/T4WaemKUpAZssdDK3uX4E0ebxPH4y5WxgGhmn9ZTt4qrk1cVqy5qK86C8HFdWdQhayKGl0hftgSF8k289DIwdonR19kJw2rYq53EtK9DczfT8vCdbNRr5IXvd4duPXbP0HgXNJHEJmJZkXioihLlF/NGSzEZJlc1aXGWs7OTUyNItjBYtxdWKk1pMERENTQ25Z+saUyFiFnbvoqsJYOwqVuSRUhFd3J4655z5bdXYBhlQZSyUEJ83OhZw3ZNVtbJD1WVgWkVU5Akt19YcjVTQxZ2HqCvswG6lANCDMLkzWnyEZXZuuz8x93hEETtXKcalORgrg/dZRKUE51Y4sBkzCAUC5umWoZlme1ThYUSFrQsQo1wwkBFOJC2A6CNQpcp97T4OovNSf2HVmLc4Lgq1NAreQrxbg+1SEBQSjquYObXG6JouJ8gLLsJ2kvWysleVR3CYCXwBhgC6iKcGuo94MzE92nF9JzE8i0yNjNlnK32QDtoTiC19Vqw4we+yoYKV0ihoB9oaz1NaZjbpp9+T6oSYrnjo+FuZHxqaS96Y04gnSySoqhJnFUmoPxdI8VxiV9RIXXbgoNLn4+wIE074cNr9rh8UUq8wYT8ZemTTAyVhYyhA4o8ZwP0Wr8CC+Wdnk/Nl126tpAkNxPpgX0lyfoDVQixrQZTKQCxlkWvP5wtmVS/FCtrrZIDQS78pS5aEt+Cqu+IJ6fmKLPbJY58bP2b6vyChU2ToKH2wmeKu0GTvfmNszD2qKboCys1Jb9cnMcDPx4VffZJeKV0kXag2cc3RLQhYXqKg67VUgOT9kg88HKkMq9MHcn0kqgi3S1n4HVm0mkeFFrOhSdC5Mc5kqUW3T2BhmqgZmxEIDtRHzxYs2275RrTBsNWYZ3GIbQjaCZ7UFvaLskhXjTVSmGpkrmL/YUbiifs9hme8XnqG67e12D6bAF6dRy4sMEGPldn/mth951J2ZNDJOPUqHcCBIYYiVPtbFrgKlC+bctJLDhUEm5ho5EtiHGSEwEglB6XW22LQGTlipmVOObSQcMBPYh4koRrK9AogsgT7XwClbOsZcAilUqgpDmFHg6bRbNkSXlh+GBb1agO9P0eaSbDG9jYLyGb8qvq2p0nauWyvRH+IFTLM6Rtbnwc/ZSrjINC/o0lAr3VwI08B06gmnyPwE5oNZYbWD+UaIXhiW7DvyznP7ljux3XUNZo34BrqZt6u+3lpt2QyB4U0lzkIcxVCoO7Mw52iv6ej8kl7blwbNb0rGr6Vqi722Y22HvzWrHnYrqzJ8qEAXa9KvZ3FOIUxCvo3kgylA6SvSVeirWVSzBxWbYgGL/bEmVjepRZYFbbkXfPcualbLoXqZJjFFGALqBXrrzl5ltg1Lc4fSrL62WLLpn9ZcBaq0tdbIzNksJern9Jjs/Eipo5BGB8ZsSq690zIjWIksKYoUc03alGhuzYDmni/NL/P4yYmbw4ldb4TgXcyW71cDpSGkgo3FEIozslhVheo5KmNhYWyxHDFrrGJxQFUDqbQxb4u8U8+jDqAQqRBgkNkZWiATiQSM5U+ZVSmqnsS9sSjB4l9wMeYGnjGy5ttupA+Z+9wz10RVoYuVx2EiiTKWSgyRnJNxhGpdkaCs88ny2x/s/Np0d2+LuXjtWCnCs+OOOUfOuePRMJJCsTJPQNHImAO5WqwvuoF1qmZtTTXyuA7cl56X0olDHBlrh6B0YtyjWVoeXuXATAqG6D2Wnsldq1blrKeXwiGOVrZKDBCwJy/J9Mfc04eZYx6YSuTnTo85pInH/XkZ9wb3aTHTXN9pRv7yy1UBvqPIuig3RfgQ/LK8b4vV5thmxVxRg7Keu523pUIsvwEJAUkJ7Ts47GDXU57smB8lpieR+bHYbn2whTmebfGKZ8yFqJb6EDzeZHXl1FChRRf357api67G7qlZVcZAA9OTwHwrTI9Zqkn0z90KPPtvA+QbO1UafTHNq0XY3EBbzMC6aWB9bakWXL5edJ1/r322KKYG1E0WxApZLJZ61FXZ0BCpak+Ba04JILES4jY3RJbvL9dp08HTHqAteEDjfFWr97egM1ulB2Gp9rFMnwrJOVzFyb5VcJLqdY6tpgXLAroFxgCE2YoQy4m3LYe0FaGhZG0+TTeQD1YuqvRGhF0eFZ68cuSlx3e8vD9zk2Z2cWp0tIjAXIRjGRaeVEUoVbjPA6hFfw5pZoh5TVtQ8VyzzD65W2/jKmspFb6dWxbvII5alEqk8iSdeBKOfF3/ZR6FMx2Fz+aX+Vx+ic9PL/Os7JkcdKFbzQM0LKl6fl6llUCsS5ml+zxgldUrhzQTRLnPPZKF85zIJaKiDL3xBTaQTM4tF3D7fOsyBwlKjNWT4bfxMafRc2KGLpk1enReWcAqq6eZfZqIvrmOzrsJpvgBqkSe1T1P64FOCoPMZnXTiudaOk/GyAPu60BeqJLsPl9J9/QhG5+nwJQH5mpWv03Jxv2Kja8/PwLMNZlnYrucgm+WrijQ960sumrr9mzWH2w9Gfa26uavy53epT2x+XFTPE0R+rW0FFR6aMnCUWGaIEO8U1IMaKs7F3yxSVD3ELLSnXyvlasjA3VxT0oQq4rgt9GexYsFeYl1CuSKdhbnU5RwFspg1oYmyG4JNouvLeK5x3LeGsKtrtdqrj+rMq60XAC96JNNN14o6PWYbo81pejDE09YHb1R0d7zJlWXGN/iYitiyk9BvDir1Vhz5OKya91ev1mEfj5VJFkaALFCL9R9pB4F6YKhc2cveeRt28ZCZbbqHGEGabUcF0Xu7Rd1+jsnGnAQjbLutVD7vkRlPhiopVWXf5EibN3cMkBKMpBQyO45UCXtz3RSOMwZOQVGSfS7bBZA9OLBAFF4LCdGTYw5kjWREXZhImugVHHmj0gfrbZfQP1YoDKQxPgiQX1RF8CqoltSgy3wSx+oMjjM/0Ym7suePUoIEx9Lb1oV9F5hfImoA2ftPO0BOnHwiwid2DXuSk/VyKxO7uyem100N6LRhs0UhNQVqkKSzP08MBUjSiieFtNIoDWEBRN3YXsGdevaDqeUjUyhuXy9YkJV4elpRxeNZkyc3s0zADnnSB8KXWPgUYuDziXwTAfGmtiFyfIDg2G0sgbjCnVUq/izPqu5O8/V8i5FlY7MszwwSKALhg49BCMdOBZjHE1kemHJP0ajeQLEqtlndImfal3BMOlaEf79K4sx91D5PUSD4hZe8Pw9gMaILS0gzgM/92ZH+AL/twgwz9B3SEww9NRHHdoHdB+MyTbKkpbQ8sfibGtyPgjdSYlFiGP1quC63trFxTZt2Fy/6Z8A6CzUwXPTeltA4ghyNHeZJgefDKYMazCrJ55AzoJOugb79eKyphvVLrTRcxeW3hYEc/EeGoPY5fda11YsX2vGWGuS2CKf7ATaNh/F+xMhRKz6Q7DitjmHzQ6+TQn1hco1me/sY7INTAnB6kIlgRHqSWASAygVWe67ttQLNUXF5C5sV2Tae3zPUx4WdG7ry+oWrrpL3fQFiBCqkk6r9f0ieTgP4mxpJLmBiXoouUcen6mPC7c3Z14eTgxxpguWmxd90DqghIDoTEzKVBUhMWIpJxLc1vLbbNUxVCGTCFqIoSy5e9UtGkHoxPg8LbndFECzDAvJ+DIFXkn3vBbvOASr79fL6+Qp8eV4y13dL+5X8Ydg7+Tcxa/xJJ14XnY8nfcG3ccL16plIp410lF5rb8jBuUQJ74ojz02ZsnrqmbdTGKxyJLbJG3z0tCsjVyBzQYwBOPWjJ70WarxzrZMyKkmAkqpyi5ZwvsuFXYxbx8tjGgsmGIHJu2MRaZYjUEJMxoyydXouSavOG+pJJbAYONwpmcvmRCdWEDNGsUdKgWLt6agVLWcz7mY4na/ryu6sGy4WsrKq/21HNL7Vkw3uVLYxgIbbF4V1bqddZfuKf+usjn+cB/+0K3VDldFdjt03zO9sqceEtMhGPN+B7m50BTSc2OBSUd3eWLuzzgr0pRfUy4NMdquvb1s809sFEyzDkQrYRSGHBZaM3XrND8ygIwmL8mEEmaBGWTCErbbebeI2k0fiLcZAVFnjnloEW66T/x2F4W07fbNwrpYnoJXrPcdeDXlJWqWoPYVukLqMjFWeie9hmq12tTcedZNrvCCQhUkGci+1YGbpg4RJZ8tFqZ9gU7ItZgimISQnTFGxZTYLJBNweWdGOgkspAcNGCORqV26w5GJgdcVBxgI+YGT0KqulST2MrFkPtr7WAeYHoC5eCbmA5qV+mejPQ3I19z8yb7fmIfJ5JUogPEqi/uAuaWVLMO7kvnCRKVffLcPg9eVrX4z9bzP7n1ZPmBVtanD4XbMHKI8zKeog1durpFT7XjWdnzhTBzrIGdZIoE3si3/NPxFe5L7y5QZZDMk3g0q9Ln5BBmHocTz3VPVXjKjooa+tJ3JE/nPRHlY7s3SVSiFL5cDlS3ZyzPtHKezCVqG6fWZi+DpBBiZehn+lgZunkBDaVQGGLmpsueeSM8HXcQ4Thb4r1oZd9N7v6cOKSJXcokH8mMg6xEuYmjxQVb2o6P16SRXIRQO1pUzltg/3T1fjRk77F0HEu31CSsCueSOOaeUxkoGPn3VA08U9RcyCJ49YnIrOqseTaQT7oTt2m6gmDer6I4CGZrAW5ALMtK+xbfHKtCa+OqymICvdNgN0UbAtzdwZwZ5kJ55Qae7Mi3aU1YLbb7L71SdkDwOOAolsjckpInNS5AYEVe8CBRTFZ96E1cNq0e44oTSDKXjbZahBXiM1PA4yMoB6u0Xp1CiwTq8Umy7UwfZgGga4aWLXIbZhm9tOgWXNHGmmz3qBsLcsEzZJY4YcRSEsqgaNoMVhbklCyFYCfoUNEqdL3txKvvNEScSqs6yEFYrBXU0JCg9F02NGSozFMyfscSlvijRiilmPIqlidoxRKU4HHTcAbprB1l4MLqk2ybDSLozjdg2RLsFSVHc/tpL5Tn0D9TQwjPb9l+Lf0VZ7eWq5AnmG68b1UoXxk4jZHPzIEPPbnjtdvn3HaTVVl3Nu7m0mp5ZEkqr/X3HEvPMZvyadO6VQVvvwmb3U31OJxWQaU6d2hkwlhZOqotoqLro4Vlub1Zbjhrz8vpjpfCkX2YeBRPfP3uC3xhfokvhsKb855ZE1/Jt9zE0QoYh8JMx5s1so8TQ7inl5k38y1P856skSiVJ92JopEvnJ9wm0YepTNfs3+TJ92ZL4aZ16cD93MPvZCLMkqkFMtotORKm9CqwSqCdAUFhs6qX1jeY+I+C/s4k6Ty6v7IMXf0seM491b+aO7J1dy31j+ZfRzpQ6WnGt8scNKOvnpV+Y0bQN26szhtvVyOFARLGRHfqJij1Z0LupbLHkIldFbg+JR75mC/matXP/EddHRXL2KKeRcyN91I52w276VcFeA7iE2C1S14kQPoFuCi/pr2eAd30/Kl7YR7qAxbdfkYoeugS+hhgC5BH5C2EJpngZANbJKO1QitJ/Dqo4TJ8xgF5ptoLL+bNiwFVzf0WRdk07Kyd7RbDRVDNoote3RWZmh8AnUQW8QVZIZ0MndeGLngG12AMGyus91T+D1vr3th2TWAjLCAZZpSvEib2KArV7CMOChGlzZoL2ioxhsahFwCsTPOyi6atVVcSakKxGqMMlV8abBaeEMqDGnmPHeMs+WHiYgVj42WTK/ZgjAyBbNC1eOkWYysXIQa1YBEnRpYxovPGjJDkb4srHsUO0faZbQG8jEhZ6MJi2drepwWA/LhTKR1q1nH5sIuPVbFI0DthfSocPjwka976St89PDMGVv0whqwOJLZE2YVwtN5bzl1jv6MyyKsC1BDsTJFS6kcrDRRs+yedGcOaeIQRvDeNnh+XeJ22/3pTORYdwySmWuiqPBmueX1csNX5ltLBxelE0UlohTjo8Ro1M7Zauw9y3vuysAhGpVYQDnWnmNOvDbccRsnkhTemA/83PkJr48H7nPHlJOVUJoiJUcnt27PtrEKBVF2w8yhn3k8nExBeBtSqBy6M30w2re7PBADHLNVXRBRdq1Ibsr0sVrag18mRR8bVR6lkZtWdBYxC5voRXVtEWlMq7Yk6NLHNEtQGwmdsx6tM8bcnxqsBJg4NZ3gMVyhC4ZO3Sdzl2/HSagMwcA476VcFeDPIwsYpMX+FhenLgvvUgEe3qoEN667lr/llT1Xk2abDO9uCiPWrlAycn9GqKRcCI96whAou2iWRPLJKx53C0ocXfEFoyyrCWpUNDUaEVnzzlSt3I0+uO/253bVrCw7OauabrHHOCqHL8D8yKyVBoipAnSum7IndG8M6hf54h66RptibCkTjVR/i4xc7rOdoynMymIpLnURm0UYxNzCAoxACegkMCiyy8ySUIU5W1ynS4XOecoai0YQMS5VLB445cA4D77YF4ZBl6rg6vEQSVY6SPsKkyA1UJOBi0SEUKwRIeuS8y6xrjlioaLehhAVeq/+rUKhEnez7epLpOwDZRTOr0D/zDYjcWK1mjcSqhXjlaLggJ15D6Equ0cz8Q3hqd5Q5sDLN/c87s6k0EoNmYIravZf9RSAQxxJUhg9vtTKLDbk4RBnz+czG0MRZo1EhFkTUSr3uaOqMgfhJhpKVN1VUICdZGN7AWan9rqvPef6EjdhtA2GFHaMfKQrPM0HTtoxOXH5JIGdU6Blv3eAPsy8LDOj9ky1kXIXXkpHzqUz3tJgFtyH+mdW2mncc8dArUKflCxqSeU1LBarpXUo0xyJVN6oe276aanoXkug6I5DamTSmSSR13bPeT7tOJfEOSdKFaOF6yDXnl0o9HFeGFqGkKlq/Kb7mInBGG9mTQQJZFpcc5sgxUIlZ5sU22RkNbSmtg3xYrubwnsUz8wYSXnj+QzOAQuV7LmvnQOfjHPUNj22sXnv5KoA30EWpXaRn7ZRdBdWjWz/eEts8G193NvDm5JKi/8hBLSL0Pew79EQCARkUmM5me1OpUCYlHTKlgwPBvjoA9NNpDwOjLcCSSwdYnL2limQToqMa3J1DbJaTm9ZKjdGq1NxhQK1C3bdWRY+yzCbJSibLkO4VHIPTi+8jfUHSxyzOjXXYv3V9Rpbi2+x+jZW8+KZVtBqilAAMgQEHRWtiSAZkrHIEOA8GwHx0GV2XaFq8d2+BftTNKUXBOYcmKZELmmJeYmAhIqWYLmG2W7ekt+dH3RLQBChugWIBOiLk3ev3KRLbmkQht5z8eaOCShTRE4CUcxDMKrzxL5wFgJuMM/YhmwCjUJOwvjGjpc/eeKlV+7N+ulmopTFAkQbnVZwddhidI3s2BRk+wzEQR7CPmVu4uhxRXOxPcs7nueBc0lWsicaIMnOs/KEBrGFdR/z4ko7a8dZrVjhqD2JzLHseFYH7suOyYEeNuSKauJchJ1XSVB3wxYix2rn6SXTByO/PxYna/Oahr1OfDk/4lgGzxGMXjrIOGeXlI4KkhSJSp8y0YkLUtR1Xy3OZ1oD97PwqDerd4iFu3nHuXTkYqW3DFUZmYsa+AQlqwGJspoXZtbC43TmcTrTMZNJnLVw1H55EI0jwwEvogSt3gdGEYAUDmGiEC0FwscwYLUc0YmT9GhNSBR6KvuYOeaeWaPFKoNZrHF5SNWrwhdu03gFwbxfJcjGBbqNBXqcTpsrNAgb3vf1eBP/83KcN6ZLswI9SLK4p7pkvKApILkQTzOSg+foycYKsnPE0wQImqyCfN0FJifNnnd+385VWVQNoTiZ60cjC3WWVLPulhQAaXlSrC7ITfxQKqRThWy5QLqQNK9NXRQbwkUcUrn8u/3EDylANIWXeyUfLKm8kT6H0RO9t3X9/FR1qwwxhbd1mQo4QMcRqo6epAhlDpTnPfPR3I8hFmofmIs4ubPtkIdkZm0MMGZjwhjHZNZbdaSoL7hasUK86p0mkep5XuLgoQYA0l5NWyVFDjPSVWKyArAtnhMcCRljYZcyY05GMXqKyKikeyU+AxlZvPYbo/gtsgx39qr0o7Xr8PXP6fcTj+uZKIVczc3VuDeLmDVlzg0jk84aLL0Bi/tskThJCruQeSmd2MeRJ8k8HKrCc90RJSP0VkOO6pyeRtBcSySESpJWM1DRquzSiKAc5MzTsueoA29kQ3IWr/SOKj3ZuDBtkhp4QyNTjo6YVI+r2X3WKowaOdeO2QE6nVTLARU41o4UMl3I9NGekzHvaFFRWxWUmCoxKkOc3QVoaNZSYcqBLPZcWIaOMpE4l8ghGq/n/dTZ49tSCNQs6RqMcP2mO7vrcXUs9ZLNdV9tw7STETDy8ruyQ6VbYnqBTEchi1mFT8KJPhQGVnTpHJITDNRlPVCER3pm1MhdGfjS+Mg3Pcqr3T2BwiHOiHgVerfeQ4CbeObVdHcFwbxfpdYNCObC9SkWq1O14re1lQDaoBabrLkUNFixXP7nF/MVuSnBWpFzW7kUOewAIdQEKZiSqe56bbc2dISpIGNBsho9V4mEWxvmfOP13TpdqjOUG2HqgsUQJwyUgS3erQBrU+wtVietWWE9Bgak0NhSGvQtbWybA21IsOVzVxCbr2/TMNSIPkiT/V3UyLhrMndrnLGyQou16Q91dZep36u0a2ykfV+9ojkz5pZUQYdi/atCKYFSlNQFarLEZdXAaTJqL6QwpEyNgRCqWWIzq/JrO6DoFxVQqV6qSowOrdg8aPdBJ8boc0ywr1TJxK5uAA3O6lMjYxa6lOlTIb1WGYcdcxRqirbREbUi7tNb9gkX44N60v6pbTKE0088oXxNzz/9pPBhecar+zvmEA0oFLIhIkNlrgqS6KvzqAQbCSMcWncelchY4c28tzp1CI/TmSHOvByO7GpPR+VZ2XOuHZNXgNAAvVPkFOzZvNMdJURqCdzGM7sw87Ic2WtmkMzzsud5GSjaLbHJgFWRKNrKstpzO2u0GnliXLoV8ZxZsIC7Kc5zjV7c16qf93Em7J7zNB54NluMb0iFu9Azzh0lm1Vn4ZRE31WS7bZoZOApGBtL9bkYnBHmXgNdLNz0EzJ1RvFWArkGqpcgauWQXurP3KSR6JvWr+RbxthRMTLrQ5jYybyklJylcNLOXLoEZhJJCh2FUXtKtTbvw0ySTKeFQiRrXMayzaWkZqXvY+HNac9dMSt+cK/IPs1Lfm0fZg5xog+FJ/Ge91KuCvAdROQdQDC17bbCZQzvQtRXAVkV51aZutK8OAa0+oBWFUIsD7CCTMUKn22up8VcKDUI9BHtItPLO+ouknfBmDw6zxUsEI4slpU2NyLWTqnrfTRlsVhisVVTXy3PVWHJRVwp+J6hFc7ddCjNolzbz6rptsewe6txheTnvaFLa9/6yeOKVRardcvfsqAu5QXXWkxafEcuZgGLKf+ggpa0WmNdRXZG6SVVgYiIpUhIsHyvMSfGKVGLxX2W6t7eOapY1Y6GCEzqqSNYwv5s91FFYV+MXDtWUl9JXWbn0PkUq8eMKlNJ5BqNxHnquLsfkDc65Flk94aQjtDdWU3Bhjd40UZgGaI2sIqVblJLc3l93/OhfeZ2N5GCWUE3cbJhUOFYe2YHWGSNbv2ZS7QlnivK4O6wx+nMIU7sw0hyWq7X8y1TTZyrVVaIogwxE7BKD4dgFcptzCwz7hBndjKxDxOdWOD5RM9dHfi5+Qn3Zbe4YaEVfzXLfFZh3FRqNwCOocscaOpUYJGxmNJThUOauE0jX7v7CkkqWQM/Nz1hqjPP54GxdLx52jNPyZHB0PeZ273Fu1QtEb029gEiY8FLR1mMLGNpN41f1TZgBryKQelT4aXDkSFaOagn/Zl9mp3MwU57iBO9WH8HT8zvQyXqTAjGbPN83i2xvZZneRtHnsQjT8I9b5RbZk3chImskXsNPApnBwUNS66kG7A8nfdUCbzc3/NSOvE4nowDtjXVn7dA5aPpTQ4yv81M/JWRqwJ8J3mo/LZmSYxrXuDFcvKC5aUFgraLf/vZQ+XXpBSzLnNGcnZEaLdxi0Y0BldIfl/VLNJwmkGVlAOhD5Q+UAalDGLuU7eKLHcMalLyIOQInfNHohvPZHW3bgVJpjhNeV5avO28CgtTyQUqs3XeVgk9FHWPrmAISD8mBcLJ7kUyCxVbTSDBLPDgKQXNq7qNvy2u2xdds64j125eZou/1SiWpjArWqzCROmUmgyLWHJAgpKiQc37lMkSybNVTmgVwxcmEFFLJaneSVUMDp8ETYK4G9nGxhRnqBWdhVE76GZKVWqMBjQIlU4quQQCkUfdyHRQikYD8qRATUJ3Z6kqbweC2Ypg84Ji8d39F6A7Bn72+BGefmzPRz76Jh9+9Jw5BQ5hRkJlkIlIIojFqIRAroaCleB5ZdUW/lAiT3VgroFzSOzjZNR9ktmFSqRw1p6CWNFWVwKn2lEQdl7NXLFctCwGnkmSl8TvjsyHuufsw8TzvONczRKaNaLFACedZGIojGqV5nXxHvgmBFuog4oBqz315VwSkY6fOb7GR4dndJJ5rXtOotBhfKSdZN48HTjnRJ4DopW7Y0ffGfqsKYTFnRk2JaRomzJHh6qhjWNYYAKgyrPjwM0ws0s4T6kBevpgBOFTNWTmrIFDnDjEjifxTCeZnswhKKnLvFFumGrHpJaHeac9WpX70PEojuzCxFgtGf+GkYqNhdAQp3bPmY7XumeIwLl0zDVwR8/jeKaXbM+HZHZh5kYMndpxRYG+f2Vr8a0HWSjPtqjQ9r1FI6yuz3UVZmPpbH63yQaWzftFik0vKdXo0GKElEwZDr0pwiGhSagxUPeR0gdqHxZFlGZ7oPLO89c6t/SKkkYDxnSjvsVK2L4GdyG1TKBiBxfrSoUl/qc4UAV3qenmRO0C2/cPe62zIqxlhysiP684MAT3JFa5qJZ+4ep8aP1tL/Jwz9JEIXrBWo52H7VX8s7QmjUH0lCI0VxUtQTKGJhjhwTLUbPkZ1l5Qi/OL5b4HpWFn6yKpUcE0KSUCmlXSLuJlMwqGLricHalC+ZybFaluqsupcrz08B86ulej6TngXi20khhNuX3TiCYrSzdpSAz6DEwPBPuP94zhkSR4Pl4ZjkUcSXiuSjVyQIEFli+RscmibnK+lDogkUlFeW+Dkw1+jHccrPPkqz/ulDpwkwD1SxVIYBRjQj6XDpOakTQ6hZKyzesBHfdFrIkqho4qUpLAg8ENUvMMk2UuSRDs5aw5LW91J3pQ+ZJPFthWFFmrNL53bTjfurJcyBEkFh5vLM43VQi57nnPDeOO48nd4Whs5SGqjDltChIq0UoqFodxZQqj4aRfZzpoiXQH6JZ53Y+izH2wcpCVQ2MdeCZCk/S0cZOjYFHWBG0ihjDj8A+ZEA4a2+pLzobPRpwG0bu6p5jMd7QJJmbMPFcdzzLe17qjrwUj9zEMzdhYpB547gy672j0oVyBcG8b2VTlw7Y2PBsFtGNz+FiUW1aYaNEBZaA2UNrMARfsMXdnnH9XPyzEJGuM7aVvjOF1wUDrEhb9BVyJRQlzBUNYukSBKOimo0tJoy6WEmCKa55MLeTzFYZqDWvGW3Vz2+Gqx2sop76IOQb+65Uzy3MXgh204mLVdm6pfWnv6+9Kz4vx6ORNe+vdW2RTakcT6r2vlqsv3beFz1bbo21+qmiWAxOHblqIT1z4c5AFeuPZCkqWXvqWaxWo4D0ig6KlkBRrB6gVOvE5n3LK+2aJKdjVqfIUzXatMjKUJM8XhKzFZOlskszXSikoJyLp2kUA75kDZxeH5BzZPdM0dlGTKpPPfX2eNu3QJhlKrsbiweftVT3kyT2XwmMtz13XUcvmRiLjYWAUAgiVjkkVIfPC2BE0TYc5u4ca2CqvZdIwlyaYsCTqQSPxxWzfBwyb3ExZayBrB0JpQpMREZp+E1DNRZPqB+YKQQmmrIxGWsETzPoMCDRqfQek1R2YUJ94lW1ZPbJY29FYReUY+m4K70DfiLnEplK4NmpR4uSqGhUYoIohfPcWUqAqFUX8b6waxiZeKnR62FbTDCg5uKuZgXHUOjTTB9mz4M05ObecxUtP0+JavmVWiEHMbVVA1kGpinyKJ1oiNyicgFsmUpkSIFj7dhJRqiMkqgkiy8CJ01OVWfcpUErT6tZ2l/bf9kUMzN7menUwExJGm2EjXUkG+r0CoJ5f4o2q+KFMTxdVw7h8thWXjSwDw8tCFNXflvGmObz8AoDqhWDRVZEO8+HbzaZudRCUWqS1c1ZQXKlZnPn5T54jTnWenXud6k9hAhl0tWqaut4VS9YChUrASQFy2cT4Az5AHlv8HQpUJ3bMja05osswaUPdSm9RGDhwrSkbLO4DAOh60YiuCKJq0JbdOzmOssCj3XfogiqfboMU2DJkUyzD8Hs8bASyLdQD6BDhRyQMSBnoKvoriA9aFS0RJjsviUqREd4FkFnWY+5gmwFh1tMtpbALBGJsAszIsYSIiIkmbntJuOezJWxdGhRdq+MjM+FcY5IEbrJ60VWq9YdwUA+D/dqm2Fo3bqkrqjjmUa4+f/BebrhiykZ28drb8AObtJklQUAERvkKhYrNXVSNvlltslaC+M476T7vc8kt/SKKx6hSgGtBCnosoS2OvQGLpsUImWtTgEkMQUpCD3F43mrS2DSjlrNStpLoZORU+k4a+Lek+n7kD13zVTV8zxwzonXpxtm7SgaeK2/4xAnHncjVS3l6HP3TxhLx1Q6Zh+HXV8YOgPf5Ip5CBrdEU6sEA18J2LxV0SXFJspm4v07jxQ+mg1FkNFQ+CYB/bdxA5TioiVhDJHTzEAEKaoJul4mgP7aGwsuzhDtTijOaCVZ3nHTbRNs1V+t1WmgYaa46fDxmTWZJa5jPxcfsKhTny0e0qQmShOdoAusVtzSFcK8WoBvl9FYHHjGFKvFcT1Dx+CX95OCW5PuHVxbkE2ISAhLK/aJXNzphUMQwwQg1l1fbT4zpBWxby5TlAMci9YrlsUggpyVuLUgDTqfJ5e5b23H4cMfWZta7D214QBTYJagn1nJZnyTsgHXQibJZuyCydLvI4zC9vM4ppsr442qMnOP70EZW9WpXYVktfwa/G7MSJ30ejCWupDwHMm2VisTdtt3KDtYy8gnE6tvqErPScUb8rbfquEnXEbaoL4LMIbSsgBydZndaeMTwJyDOjJDHaiwq5YnLSIWZIASYm7SujKUj6poTqbq6uhjEKA/TAvquOjh+cMqTDVyCl33M+Jp8c956lnPHdwH5FniejMMkRFB6FII+DWhRFmsabXLrtgi1lmU7B2lw5OHxbqa4X9x4/cPDnxyv7eKLuC8X82Hd6LKat9Z1UakmQehTOHYKCZQuBYe0MKlh2n2jFr4lxsVzZrQ2RWHqczvZ9jF4webFJTwPe1W5K5O89LDFoXJKfidF7VrrlUPVjabIv57KCbk58vV4tfnjwOOdXI/dxznHvG3JFVPAneOC5fn264yz3n3PH0vOc8JcYx0Wr/haSoRk5joNZ+yUMUUWLU5T24Ugxe5ik2q1eszqDfL0ApwVOFA3NV9v20cKe2Me28skZbqmTZEdqGb9KB82zsOcVjB8Hdkzdx5DaMPAonOq/2MWrirFZPsKqQiUzacV96CsHTRwI3YeSl7shtGrmNZ25ktPJXD9bF6mkvVwvwfSvmcll2yEuAx/+11IWH8byHI72ebrUg3UTR7W+qO5sEqwShitSKdoqz2rKs+NkfIs1oF80tunXF+i5SHVCh2SdZMOujekJYixGGojDKUn9uvIU0CmG2JHvUXKOomivVH5b0HEuwHo1EuXQ4Q41bSp7D1yxAae5HWOJjRpJifZbu1Qr1FtC95z1phFjNakqV+rgi54hOQphl9S4rC72YtP5+kbiOKTtTcIop6bDcly7uQKmQjl5b8eS18byPNKrlPp6EYYZ8a2TbLUbJMfjYLSY0VKFmQUsg9tUS2mFdFAG15ESmOfH6mwdu9hP7YeJLpwO7WLhxHk5JFdnBMRSOkjnTU/tCvu+Qo8WD46QEW/2oSUzpT1zQ373j0uNAKRHYfVmZZxhPj/ni1yTuXx34xCtv8Hg4cZNskTMrzKqst0KrosqoRgqwDxORaiCIaKWM7vLO4kzMjiy08kgF4em84yaODB53K2L5hyqwl8qZnqxWUskWeiu/Ze/NRR2lIGpWZ1kcpQ46cc5KFWWQiURgkoQuSekG3hlkRpLl3p3mjrlEvnJ/w7NYGGJhF2c6Ck/6I50MdCFzmjpqidTMQgbfeEzbEpJzc+64axRDCYv7dpbnIrq7E12q13/+6SNuh4nbfkSBOUamGNjFQh+yKaUiTlpgOYwtEWvSSFBne6EQtTI31C5W13Eudj5D35qC3TMy0qFEIplOhNtgaRMzFq8418Rnx5c5lYG7NPBqes6NWDmmRrxW1SzUN8v+nWbfL7tcFeA7SHWwy+rl3CTFNyXWZJsnGDaKiOXHl9/bAl5iQ4v4ExIC0ncL2EViNKRnDL7wRrSP1D5Rh+AVGNxlUmV1cQWWGOBFekPFF177TekDpbfq8prs3rsj6KR+n7qcz+7XrILcC3VoluEKs1c1BRGam9EL4kqLN8IS1wMsltkr00vmQtVevWq7EjzNwPpd0FmRKcFsiMnlJBuQUTPEt5bmemF7SQXCKFY1w6vYx4KlOJT13heLYTYUpZ7tWq0NZa/Meyg7T2BPGAE4eKFd1/DFNi7SV0KqpK4YEAbLIxRRqyAwR+ZzQmuwTUwSztLRpcIr+xOvDPcogbFGppo45Z67aWA895Qpwhgt2Nex8B4AZgEeDdUZMu+s9Lbd5Yjf2gv5Rpj2Qnl1Qm+El/bWhkdp9FI4UHxhPKSRV9M9T8KRQzAXaXObVRXu6o5aDYYvIbDTTBcKfS28OR84e8qBld8RbuLMTRyX82QNvF5vGGvHqXTuqXFQBW0P2iwmt3ouiJ/tWGo1+9SsRMXK+phSTTydd9zNHVPuLP/Oae0aIMX2tHZSrfZefXK0ODnL/WClkdrlsWK4Io0Nplln/3/2/i3Utm2760Z/pdbaWuu9j8u8rMteK5eTBOMXNUSTGBOILwlEBOEDX0wevAQfxBcRjC+JqKAPEUFMHgxuNCgqiAqSELyhiXiIF4wJCF/gGCV6jrqzL+sy5xyX3ntr9VLOQym19T7mmmtlb/XLXvKtBmOOMfvoo/XWamutllpK+V9swTKmuoJalhopCEvtTXF7334eTaw7KBfDwiZWBjHJM5XKRVzOrnXXuln1eqhO+v9gSdysmnrg7Jl5IZI1saiBYRqBe92seqrnGWZ2dK0gjFLX4NvUhLqftUsOOn1SAv24buHM7noNfB+a3ekHM8HTk3h6T/+d6gnwgrLyBT0Aap/JO3xSOuFcThleKQRJjr4UNHawzKns9yrD5eZZWZ2sfKkJ6sbLodEyxrwVI2GjxC411h7uT6pRJnrmVVc1Fej0HimsaP91zdAnhQjLVaPslLZR7+fhlAsf8xbRivU8Cb7/TuT3afrB03t+DR7+eh1KP2Y7LsuIRbyvqXxoj0xaz1ptQdAi5towWqYcsgeNEZgsgKs30SSChLZOeH1CRiwbL9Us4LVgrzfnC2Zhc7GQKAyamWsgBWVxEEVwIEcdAq32vMZI6i2YLFcToFip21wnLMD/aojQJnaNyohpyYJldIfAG21PysohJ35Fr9nGwhSNi3c1ZHYsPObeyl80XwNYufGmTRRNzBq5iEeaLtzUDbWOLBrYhIVBCseaqBq5rSOHYzKyvPP97spEITg/T9wlXSwY4KbG2His5UXE16fNwTfmGVjUJvweEKt2BkohSWEUIaRGlMQigVyjS5zhaN+zILgGPNtfp8Fwdt/bPWW/rw2i38f9WFtTplQM/N3LnxporsBTm0mtOTPJtGFVOebIwEAMpmqTgL0mplCJNEdI2xwWnPAegzJJNl1UEke1bm4lMDcDWi0tsAkGLVrXm2qKOcdmZriImsych7mmQpLCoQ28U664lQ2bYDlm1kQTW8TJJyCYj/nWS5MOQnnw+qve+/L2KrpD/1l1DXbrr3pZtWeQeooca2LTf9/E3h896yvNRZ79YfQAq55gSi+zqWc4BVpxF4AQaBtW9/FQbPIb72zfMauXSlnNbgnS4xGo6YuKtz5aJ6GPfenL2mfyg4OqDHcCAeYJ6oVaybC/UU6BXEpEsxj3omGZrg/IagQLFnD09P/zVEcd/CID1pMT1kypDazefF59Wo/1QSJP/0wbg9aA59Zba1HMhkoVyRGlIVM107mu+hKEGKtB44XVISGE5kRn1t6RqJ3v3bNLuD5wOxbeHG+4HGa2aeHFsiO3RNFIaY06tBX9aNl/o2GlwXLhpafCqphzfl7rGJ3fumrXLRQ67op0COgIn3n3KW+ML7i6OJq7e2gsOrCosCyJeRgYQ2UbM9dhT6CRJbH3Qb3RgJbAgYmqpjYySiXUidtm5PUhNpIap7FhDg2bODAF6zvmFpk1mhuBmhdFVCUF4w82D3RdyeW0AJP1OXLHxpVw3rCM52qwrLYSKc1sjUJQJjE+3iIWvIpTLGq1cmm/t+3x7t/1pVH2gCl2jVsz+kwQWSsXcx6MEhELmwilQlmSCbGrPNjP0hLvHS5AhG2qTFIQsZ7mEJo960GJymqVJBqpwUrVTQLblLlgZm4De51W3uSiRuugBQZXv7LiiM0toyhZ7f9GR9aVmvOsXPIo7dlooYnty6YCYa4DmcDjsP8kA/zYbudBbyW9cwpO4N1lOQW0L2br4Jcz4AtBDPySkr8mXvI04Euv0wicZLs6Dq7avkhdokXXcqWAL+XNp68OQtkJdQrkHatDukYskIqRycOipKMQFydli3j51b5MYUZog67AGA2WIYoalw41b8KYTYjZSiZ2UC3C4S2ojxrtzYXec6N4+tqwPmexILD29pp4ObEHdFeZWAOW76hPJus1YwW/hNLl0yygx8V4kNIPDn1Qrj29+vI0ZllhAFoQhoOd93IttF1Dd80FkBubTSZFywCjWMCIzrfKNVJaIIuSDwM6J1h69G9M1zOby4VvePIFplR5vmx4tux4Pm85ZLPvCdEAFbUoMgeYA/EohCOkPYy3kI7KcPhg8Ds/r/WcHfyybMUskhzo1C4b+tVH3ry+41PXN6RYDZRSkt07mDFwI/Ak7VERntUd97phrxPv5kuOOnJowzqGoxRmRo41GQcP3D7HenO1BZaaqBpMw/Lhka4BoRFo2mhNSNKYQkHE+n7GPzQR5uhIRLBMxbwgzGpo9MzoRdmSW+RQJiTARViMHwc8XzbEkLifreLSPPsUMR4hcpYRvrLY/HDJYVOMUF2LVkQZxoKKcHvYWmBuHjBF2Yz5BBtw9OxuysTYmKL1/kqzwDg3NcUhFSYpXMWFTTDdz11YuI57HsU9kxTer5e8qDvul42PT2AKBsKaMVL9IM2LXXatm4TVQaNfESt1u0CDJjImEq5nU6iIchmOvBb3n2SAH9dNz1GaHU728tb0NOF+sRdRTxqj/bu4kj6lWMAz8zkDwbTmaFDXjdQGrWuRKhLDiSYQscDaS5YRQC3AVghNGRRCbpCFugUm49818H6iA0QcHTrcn/pk0kAW0/5rRShFLMuLXZWFkwSaGCim9RheLAABiDamd6EeYdmP6NNK21Y0NnrjTpNFU5FgwJQip8De39azPY8XsmbOPZM8BUL1SV39GKNAWzNaISTXE62mxhIra+b6quDXtzjDxeeVfGl9VCqUJVCP0K4E3QqzKnWsq35BO9tnoJkWZFTk6kgeCvNhoC0RijDfTsgs/Nzha/jUoxs+dXnL0/GebVx4Pm+5LyPHZYDRQA0LiqZIjREVQw0jdi1rUoZ+LXtF/qXzsUWWXavhXqn9ulV7BNp/Gbl9/ZLj3cDTJ3dcTQubwdwcwJzgc4v8y/Lr+YrxOW+kG67izMTC6/GGe90wMLFvXsZsyQKnFBrBjIvVUuSiwcETlbka7aAQT6XGD+SvDl5RuNGJMRjhfm3DEpy/pitadNCK0igEQ4GqTfxRGuM2c1c27Ptnq3CZZjMDDoXDMpoIeom0FlZTZPot2G+/vjh7MA84yV2DUZLcNFNVOM4DIRjhPQFVjCoSUFr15yk0D7pwexxZSuSwJF7b7tkm8ysUgfsykaWQg3EYdzG7DZFS9IKska0s7GRmiIXtdOTdcs19G43u4llxcRpJkkrym9ek5SqxJRpdSq5LuNni46ZY+XMKptQzSWES4zF+ogX6Md5CiAZI6YEvRgtYtZ7e1CfZbmT7UX3C800s47M6TLQg1hVeYrQ7vJcrxARy6T2+lE6ZZ+iADFn7Ymsl5WW2c1PU9UHN+VzccNX0QvMO4wcqpINlgXFWQvYeV88cogXK1ZLIl339c4MH304nCLO/5jGpBSgTLG/A/Loi22KmsT6crYk5qFcsI/Sy53kW2Pt5/dzWNaicst8PDHl1LqIT3QVOmV60EmZz14x4FNpiKiryMkrgfJ+cytJptnNrkx1H2/iCQkCCEGNjMxbGWInxBL7I1STV5pJYlsQyDwZmyTaZxCmTHi985ePnvLW7YdHEfRl5/7hjaWnVh4xB2S+JdkywT6R7IR5guLdFzHCvqyfjr7ZU81jmWT6USag7KLtA/Mojw9MDb12ZM7xlWiCom+X23mTlRd2x14m2iNsLBXufmD6lAYFtFLVPRyJexVcuZKE24Ua3qAQHW5znq6etl97skbTxiK4z2hcag5gLeQfLFA1UiWQVkmuhxNA41JHbMvEiWyZ46cjbgPLevGOuk1EiWrT+bZcg8uOwtn1HKJ9JKr5iuaH+vDSxrqWE3rc00E3fjBrReLI98GhzJIg5kLx/MNeLpsKUbK6KYhnxXCMXLjw9pWpGu+7GcRFmHsc9l8GoCkdGji1xVNMJXVoiiGXoZXV+7MAZZStGcxFfTM4a2UomUe2ewB7hi7CwlfwgP9jIwhvphkk+UYL5+G5RTgjNVfxaHtIhwL7XuvbcvqitZ38iluV5307609Msq1I86xFZHyz7rOjPkpzNVr5rb3boStPwqmK0LNZB4tQAxft+ddJ1MtcglK1lMly60LSC5lOJU7FSqVR/LetqJxRQA654cOzanphvKyVhAXOvpPeFdh3RywID9vArxgG0k1hJ0tLBQ/RsT9YhsGroq6KUnvo+4uR6p0FqsIy59d6+BzppQtspMVhpNx1PSNbz7UHZ0DOmdLCLpA2kBfJFo20NKZsxL7olVlIyCyN12Mo4ZMZUaJOwDyP3ZecoZEFDo95H3guXPF8mLgcT9BykUEVW5/M8R8ZQKUGoQY1LuhdqMjRlHs0Yomu9np/DB0fNgUtu3xSareancSYtjc29csuEXCoymErNKDbpRcee7uvI0bPbQHNKhPHnZgyGP0hlDMuaDs++AhPUydfKoiMDhUECTQxEUTWcgor2q3xaFVWEuSRqEAapXKWD9dhwDlszdZcoaiR+KahzBZcW2VfLMpNUpmSqMEs1i6fahFGygbiWSJDmdku28BH8UWynsbTDk/X4TiOvp28dbW0sGIJUdoOl6lYatuAcUI5LZEqVFCpPN/fc5A21Bu7zQGtqwJVov59rQlFzpQimDFM02vOvkRIDR0nGs6RyFfbsW+IiuL9ii0SBJMWvSGDHbM4SFAuMIbLxXueEGRdXDVzLzEVciFqJATZi90mnRGz5BATzsd1Usb7c+Yut2Wsrb+/D/tCD4Ydlg2e0hP43ht/wsmu0jNLscrAMM3jfMDoCrXf1+/vgLEj4fvrv9QRcie5IIP5Qtsl7ehu1DBBFqpKj7bcU4wn2/pl6ANPUnSE8+/OktdsXSTllWr3cpwrDAiX6yl8xRFuOSLK0MbhYdHswTrI+KBJk5ab1SufDwTy/Fv56ULp9lIgYVcFRqytlI54uH1XQqKRopRwJtgDo/bNzgIz0j25GpWDGaSvQoi+PbwJ6vaCjAS5KTew1MCULGtlX2ykWHj86shkqN+9fMN+P1H0iXykHMk/CgopZ4hzrwFLj6sAexmagGIkQE6rWp42LLaKCqhvvfnEZYHAVoVCw/WdYDiPtkTJMwnZnmayKTYoqgTFUkjTv4cGiycti0TNPdwMHEFMCmZXVzWGiMrswsxIQKo/SgUObyDmxyPASZ1J8cWgZ03pN1CyTRC1vuatbrtLs9jz9dVORqb4gtL5VYXAJxGeaKCXyIm/YxMrVcGCTKlGEQxk51gFJCtn8ELuwgWoXz8DAWv7aw9E9v3Psghhoxvm7DUpNLFFNQzTl1VUjhcZuyEzR5p8lRBoLewYLaBppalQOdTd7A/dkz3JhbsJzLlA5mnO7A+m67NyjeKSROJQAYh3BrEIKjaiVIyNBlYs0sw3FqA1tXO2tdq7/mTGU7uO0sJPFH2eTiYs0duHLF/zgkwD4kZs4olIIFmxa9ZTBwSchfDAInmeF/furLnB/rX93hwdSpMuf6coL9M+CVfeTaMfWf16fr16SdJx/fxBVrOxYttanapNQJqVuIG+VdqG0UVcEZGgmpMyshKNY8KiKDkaVqIm16mMIVOufdSuk87VuT1I7OvT4OpQLKI/c8mewOqTmgGZMImwwHpImRed0Arl4KfdU5/WJ5MOqzuuvFAYbF8eWWDCIAk2NDtFYHexDhrAILOAMBUMUFgf4vPqjoJ74hIoQFigH4fimUO5HSglIUkKqxFQ5yoCql+tiZUwCVXj+2SsTyG5KuC6waSwt8vm7K0oxWa2UjHPSVFhKIM8DZQ7oUZAFxHt9huvHs9tTntSLa30qPt96lt0E621eWolcrirt8UwYi/WCaIxSuY57NtHUWiINOgqRwqzJM8PGRTgyhMpAIWOZXFArrw8U7nVi0cAuHFENHNrAbZs4tIFDGRx1aUHNaLoG8GgPzkDWR0HUjFevhyOTFDfrNa3QXpzceb8PVQ46cqgjnz9ecZsn3j3s2A228nuxbCkt8s5hhzY5o1/oev+tVRpOSZ9+yDr5/KY9XyurKptNZjMWrqcDKfo4p+aqO+qmwNbfvIiAbglBuc8JQZhrILdhFe4egvc3G2xiYRsVSNzqxE5mNAhP4x1FIzcqzC2Z+lEvKXuO3RpcxMVk4uwKImqLgss4UxUehQNP5Z4bNgTg9XC3lsjDer7KpSgb4cuaAX5It+TDt8985jP8vt/3+3jttdfYbrd80zd9Ez//8z//oe//F//iX9B99c6/Pve5zz1434/92I/xtV/7tWw2G77jO76Dn/u5n3vw+8997nP8/t//+3nrrbe4uLjgW7/1W/n7f//vf6mH/yVtqqc7WdZgJBaszhGcH76DV79+frGbPXiUii4LzIsBYdxol9psAusOFA1/3SZZUys5RzDailiwiX19f1PSrIx3ynirDHeN4U4YbmHznjC8H0i3AbHeOG1q5CfK8hocPgXzYyE/wqTBskmchcX3r72oun48a+UWzucHRJXpOWzeU8Z3AvE2wDGYWDTGjdQWaceINp/sdsX6hMPJPw/0xIs8O/UHX6cLsaafxpFU0+t0WyMT3Fb7GnpJ2IJ0vQQdhZaEOtlXmSxrfNW81j86LrB9oUwvlPEZXPxXYfpcRJ4ldJ8ox0Q+DpQloi1SS2JZRvaHkVwj12/esX1yJEwNvUuU9ybmmw01B2KAXBKH40h21OyYGptNYbMrxOsMl4X6pJEfKeXaJObytTBfs/op9rn6w6Yeo7/A5hls3lE270N8P1H+8xXPPvuIzz+75r3Djud5wxfma57nHTdlgzH/hI1kNqFYgKGiwH2b2NfJMghRU7QJVh6+1w2jVC7DTG6JRRNjKFwmc41/NJicmmUplkHY49SdB+0KdDJ68wz0ednxXr7ged3RAR0JxYqg1pucHcSxCZmreOArNi94a3PLV17eElCez1uWZrzKN7f3XE2Lu3IoKTSmsZDSSYfzdDecikEP7seXto6stPcL85K4P4y8v79gv7jvXrPM31rhlksXTVSEp+PevqYDU+wLI8tMqxqKdp8HbvKWF8uW54tdq9s68Zn8mP+2POGXlrd5oRdcyMLb6Tlvp+e8mV5wEY4+VnYe+zZy1zbsmTi2kWMbfKqzkvJeJz7XHhExjuEL3XLUAZVAENiJ8gRlKxA+9O77tdm+pAzw2bNn/Pbf/tv57u/+bv7xP/7HvPHGG/yn//SfePLkya/6t7/0S7/E9fX1+v8333xz/fnv/t2/yw/8wA/w6U9/mu/4ju/gR3/0R/mdv/N38ku/9Evr+/7AH/gDPH/+nJ/6qZ/i9ddf52//7b/N937v9/LzP//zfMu3fMuXchpf9LauSrznJzG6A3w7vWZvfOXfvxIQc4YslWA0B0nu8jAkJJkMk7jm56oOI2JO8OJI0GhWRyTXBvVS53k8WH/wAK4B2hhgsAm9uWxZ28gqEC0lrBlQPArDDQx3JlE2HFl7fgHDpgTlJDdyfu5Al1rr561ByZeB/Kgxv1HB0aPgq+Szhj8i6BE0J+fn4YLRPp7uGWNj2depnOaWs2FfK3DnwbFLfBX1ErEX1KplTeng55U8YCSjS6jqieTPw2LW+ZCDZVvpCFKV0tPgmqiLkh9BS67B359CtfE/zoJkO2cdMSk1UepxoB4Tsi3EsTEMhdoSudin1hLIhwE6DWIOSPUjDOZxl5w7en7sfMg5NKzcXSchX0HdCS016oRx85aRXc2MsufxeOAimj1PEusUzVgpc67JXNJD4TIeHWFpAJRjHcyjDxhD5ahG62iOODzUHSBs48IUG0mOtLLjWO1ZkHVt+PAZ7GeoVK6HozuQG0Vg8WA3SOUyHtfjvYxHmgbeXS65KVu+MF/y7uGSY0kMsVFzJNAM+NLCetc1FXJOlGJLPtWzu+KlgtDDO6YHvPUnG3WBYWhMY2Y7ZMZUuRitbxalskuL/2w9ykGKiVG3ytKSCSU0td8HPZuezNF+8emLYnJ5SUDTgas4swtHFgbudeJ5veC2bV2wwMx8D23gMi5chiOF6OXSA5MUgiov2g4VeDPdMjp67GmoXMhpudiPJyFftsyvb19SAPzzf/7P89Vf/dX89b/+19fXvu7rvu6L+ts333yTx48fv/J3f/Ev/kX+0B/6Q/zBP/gHAfj0pz/NP/yH/5C/9tf+Gj/4gz8IwL/+1/+av/yX/zLf/u3fDsCf/JN/kh/5kR/hF37hF/5vC4CvyuDW/l+fITog5hX9QOnB6iUOoaq6tqffDP21Yo0tCR7cxE06vYyq9RQwLAgLWhsaovcJP3joK/HcDyEcLYKpi+niASxMEAYjcptupAUCFV1VYwhCmE1Oi86bSx5YHMTT1UO6C8H6+a5IEo9mzDt+IVCulTZZadLk1vRUe+vHFo3qcYqkXnJ1+ShbeAqvCnz9V8DJly88LM2u6jO1Gcq0mWZmvmTtf/U/aANItgwwFExGbTFk6Xkv8vyRDs1KkTEr6d74ePM1xNtIvYSyaejm7MBrD/B28DJjoJyIlXBHRY+RsgRKCoTBVU0CaDbdR0266iTgpr4tKM1l8UYBPbrv4Xm57nzczsauBSUcQaOVitMNlBxp88gzGq1AuY68sbkla7CeEIAIkcrOqQgVmFtiadG89tZr2hhdM9Sg+4H7OpllERClMLdABArmToA25pZWPzs9O4t+X3fR5neXC3ZhIIWyoiBTUEbJLC1SCCSpPNcdqjCKZYE5Cm0MvJCJpRp6KoTG5ZiZazSQTRsccWr0pdriCtpaXUserDY+eKPqWsrX9f+lBIRAksAQhPtlgNTYpuo0X0Oz7uJsHL+QGUgM28YXDhckMScKu5VMPxSsVFzFVHlmiSwtMEhB5guCwjvhkut4JEhjIwstCFMLFI0cNTGQjWJSN0yhsJXMXZ2MYC/q9lKF98qOXcg8DjMF5b4JU2hMcv58fHmDH3yJJdCf+qmf4tu+7dv4Pb/n9/Dmm2/yLd/yLfzVv/pXv6i//eZv/mbefvttfsfv+B38q3/1r9bXl2XhF37hF/ie7/me00GFwPd8z/fwb/7Nv1lf+87v/E7+7t/9u7z//vu01vg7f+fvcDwe+a7v+q5Xft48z9zc3Dz4+lK3Nf6t0cRLGl4CpU/8TmVYM7WzL5GzDK7vw1eu60Pgv5eVAhGtvIpbIzndQVzwWlYTWv8ZhRRog38l1weNgsaz9ysIRmmIRY3aUMVsjZqQimUs6SiMd0LaC+NdYLgTpjuM6K2y9kZxzqBwoiWsgtICdSvkCysbttjHwvpi5mbfUTNiHno1IC14xieO8vSyec+g1u+n6+EH8fC7/yi9bhN44C1ofVW/vHSAt41vdAsnUWgbqBf2VXb9ZxMTyI+ClYYvLEtcg+1L95FggTDNMNwpu3eU7QthfCFMzxLD80iYI5IjlEg8ROIhEBcDLAlCWgLpPhBuI7L4SWikLYmyDNb/q4m6DLQ5WT/VpbRIQt2KHfsWyoXYokMfDNeDqoHPZ1YGXYDJ9zFZSVgQtCTyzYb9PLEvA8c22DUW02RoGrgtG+7dJ24XC0+Hex6ng4FkCBzaxF3d8l65YNaBJMqjYea14d4ywjbw/nLJ3CZUYPSe76IDBdefFDm7/H5Prs+fTXKLJrIO7OvE+/mC95dL3lmuEISrNDOGbjgcmJlMUSdGMmZeO9eBYxlpmBTd0+nIk+3MxbgwRFuMVnWJNC81PKhKrFnq+df52Mt6b/d+YGnJ/R6FMVZSVL/nvZSYCttYeH28583hlremG14b7vnU5o5tMoPLIM3l6WbGaAjcqpHcIkUDcxt5b7lkrxuyRlJQMombuuV5u+SubbjVLZXIZZgRCX6dzN5o1tEzzcaFa77eti1VLLeanZS/DcouCNGf5SByNiV++QLhl5QB/uf//J/5y3/5L/MDP/AD/Ik/8Sf4d//u3/FH/+gfZRxHvv/7v/+Vf/P222/z6U9/mm/7tm9jnmd+/Md/nO/6ru/i3/7bf8u3fuu38u6771Jr5VOf+tSDv/vUpz7Ff/gP/2H9/9/7e3+P7/u+7+O1114jpcRut+MnfuIn+Pqv//pXfu6f+3N/jj/zZ/7Ml3J6H9g+cFnOgC2WhQRLLR5MxH73noNgXi6F9sxQxIJpMusjjZ3lzRr0VsCLnJ6h/tD3qVuD989WteGzN/rnrs+fOh3CJcPiYscWevlUO49PDdDhjO0qsDIvYJVFU7HMQEWog9Eqjq/39yjDvSHamuAu743lMbSdml1QYo0Ya+nIS53aXRSqj9XSET7i56Q+Z8gHM97Tbq3k5+CeLgsHmE5phXjErZCUthHqyDo+GrxHGHUtE4cixD2ELKSDIT3D0BjvPatqp89+OcCIC22P7ythL9SNkq/M/KNu/VZp1mc1sQM/z+Cl2E6NOXrqmngQcAXrc0ro9jM+NsUXH/PpHtHAWhnot01fIAQvdbcA8yMDwHTeZ1f9IShsM03UUIdrP1gpVXh32XE9HHmcDlyGI0nMC29uAzfFBJRzM5HnKVSkNeYQKGXg88s1c0sc3BX9toyIWm/rrk6nR+ss6wuedSUKUZQhVPZ15Nm8ITd3rFcheUb6VTvLAFFlKYn/cniNKtYzu1kmjmXk/f0OFVNiudpaiXcXZ+7LxPN5Ys7RhKqzPW9aXy4mn2+vKjT351MdAWo8wCFWhlR5st2zSYWLdORROrJNC9uQ2YWFJ/GeR+HAFBYKiX0bua8juQWawqPhaIsRKrMmyxpDMfCO0z2qNiZp3OaRfXmd/xaeMEhe3e6NL3hk0sJdmyhEruOBkcxjuWfBMvpIYiZSJXAZjmzDwpXMXErlSTAvytrWwpdfP69s/e9Cg2it8W3f9m388A//MADf8i3fwi/+4i/y6U9/+kMD4Dd8wzfwDd/wDev/v/M7v5Nf/uVf5kd+5Ef4W3/rb33Rn/2n/tSf4vnz5/z0T/80r7/+Oj/5kz/J937v9/KzP/uzfNM3fdMH3v9DP/RD/MAP/MD6/5ubG776q7/6i/488InnpezP/+OTr6cSKxziFYEQHNbcHgbCXr8r5ex1hZh88jUpIhHQopBk3aWgK8GW6p5hANrQ0bI/DXaDhSovTZAQstfH1FzXpZmk2dpH9HcGsdfc+NyO1yfIFk8ZgjRoagivAZAvWM+o7GC5dk9A7x+mReC5UrOQW4RdMySonM7LorSPT8Mm2mgBUXJAq+3LZm05i3pdtPylaUatfCyd9tD7jq5cU8WznAJhNkcHc7jQtUYiTqEgQpvsPWExX8Q4KyGK9QmPzhusrw6EPSvVCsNBicUCaZyFsoN8YcfVRkyerWC+hw3CUc3UuJhSD0m6avO64/MsVNaLZmPYojAnRwBvhOmZuX7EEw3PZe9O1zdUDPwyK8sjO0bEvMwRob0/cZgTn82R/fWG+7zh9e0d18ORN6dbDnXknfmSQxoMxBJndi6afVsm9jJCTcxt4F2N7HThImZeG+44tIkgyr5MFI28KDumUNjFxfqGzZCgvd8nzlExPp+d+iYW3tzec7tM3JeJuUYWN6r95ds3eH+55Nlmw5vjPV+3e49n+ZL3846LVAgi6O7A3TJxbMKzw5ZjMiuki3Hhje09d3HibrEy41IAArX2Ovsr8+tXb2piF2KCmoYurcKzw4XbHRnoJROtwiOClkCOiUfsuYwzj9OBTShchplHw5HPHa85toFCZIqNMcymwamB3PBsMPCibNlqYRsXGzsJvJMT22Al1m0o5JDZhIxS2LeRLKZ8cxFnJsks7hYfqezVSsYlBGpYqLpwLQZ66VWHDjDU88Tgy7B9SQHw7bff5jf9pt/04LXf+Bt/45eMxvz2b/92/uW//JcAvP7668QY+fznP//gPZ///Od56623APjlX/5l/tJf+kv84i/+It/4jd8IwG/5Lb+Fn/3Zn+XHfuzH+PSnP/2Bz5imiWmavqTj+sDWZ5EPUBs4+38PhJzu8f77egp4vSQDnJCjIRjtYRiQcXCFl3BWVj0DwrycFfYsMgV0CGZpNAXr4eEZ2tIeth3wMmASajKOmLr+Z6y+guW0Lu2gk7P4ciK1YzqN9n87JoPLK8c3GjpAugukgwUFAB2EsoWyE8pFg4sCQyMkTFW/CFLO4ZX+cw+ECmu/z0EwvVfWAUm9F7eew3r6zhWLPsl3DVBHtIJQR1dv6U+FgGpDRzGRbj8OcW3SriwTEHRj2TizDbicZVYfuK1C9020DLNOFtCOr+uaEYfZ/rJOEA9KurPhCBVyNG5fq+qlaEXHZhmqmPYoQQldwyH7RWsQbhKhCNMLZXCt136ca36iRuVQsIC/hfmpkK/dNST1hYEi24pOFQY4toEXeUOTyF3ekjWwiYWv2j1jFww5dFc31k9qybQqq2WB1fGAcx15dxFq6x7k/RFUUz5pA7PriL4M5RFgCJVtWtjZRWVpiS8cL5nbwLEm5pLINa7vv10mvnC4ZAjVTV3NGV1dTu2Yh5XqsBkLKTWyJp7PySb5agT5OQ+UYr318371F7X5oAfP3CWogWBS4Y3dPVfTkas0s02ZbVgY3an+abpnGxY2kklSrSTJQCPyPO+IUdnFmUEaVSM3y2TTCkpn8kyhud0RroNj47wJjW3MPEpHRilWqtbEIMV4ntL41HiDoLyoW78Ktq8kjUTjKhReCweugzAFWYOdOExcVVn+dwqAv/23/3Z+6Zd+6cFr//E//ke+5mu+5kv60H//7/89b7/9NgDjOPJbf+tv5Wd+5mf43b/7dwOWaf7Mz/wMf+SP/BEA9vs9YL3B8y3GSPswMvr/gk3Og197+UJ58Hvwkk+S/fXe/3sVV7DrYLUGOTs3TU0okt5L5BRxgt2cFnAdhhmwzLKCzKaEX4ugQ/BJ1ibpTpfoh63VaQvi2tMBL/v5xwUPEsEme9PwdPBLP+1u5OpfLRqPUJoyPRfKAG1U8lYpo020ih9LMUBIJaKjUMfmp6yQqk0i1QMcslL96GPUH6Y+W3c5s74Y8WT7HOAhvuLVnjEBTZSQhCIYMbphFlAd3BM9uGszcerucBGUFhQGF+lGCcUWAWXnsWZ2qkjjA0FQmvUYCcanHJur6iwwv+buHF0arlo2li+t3KoV4p0YOnQA3Vh2TPVr4lmQqAdIsN+jsATattIWZf8pYXpPGQYh7e1zXgYECD4WBaZnZkicFcrWFwTBBAvCbGo0osrzsuWYB8Y4cjUa8vK/7x9xnY7sYmYbTYYmUWkiNMHKjk0pKjSNRmsQF8M+K2/rGqH7t4fPYLC81CyS2sguZlSV18c7JslMYeKZ7Ag0E9du5v6e62iSX7Gs18rMcN2IFqU2YcmRUid2Y2aMlSFkYggIEQYh9AytdseG87z/w7ZT6bO7KaCQSyAgvDhOoIqOyhgWFsQUihCelS1zSGxDougRwaTftjLz67ef5fPlkWW9mihV2MSFuQ00jaRQfcHrlQ3MfLr4xDIFMxnel5GjGB1lGzOlRRaNDFJ4J18xhcKGxVogmBZoxLRX9y3xDlcUnbnUzEbWbg6qSgUO/zsFwD/2x/4Y3/md38kP//AP873f+7383M/9HH/lr/wV/spf+Svre37oh36Iz3zmM/zNv/k3AfjRH/1Rvu7rvo5v/MZv5Hg88uM//uP883/+z/mn//Sfrn/zAz/wA3z/938/3/Zt38a3f/u386M/+qPc39+vqNDf8Bt+A1//9V/PH/7Df5i/8Bf+Aq+99ho/+ZM/yT/7Z/+Mf/AP/sH/inF45baiEl+xnfT9zt6wwirlFQHTt/Ps7xz8Ip4NdvNbL5GaEoxndZ0+IZjtD2cKMJ0MH8QBHrJ66/VJ2Pp1/vtoskgAbTQn+Ormtt3xoZc7JUM8YD2u4zoA9IZ9PzZpcHxNqY8bRCUcInIXiG5cq0mpG6FujGfI0JChndqma/bnO+59O1itnNbP7m9D1t4c9SzoeRDomqSKnY+sVkP2N6s1kFjZsQ1uauuXUrzM3TZ17Ud2pQ48a5ZiiwRViFmIxVCfr/LbW+8Q/yEWO/R0UDQJw0HR0Y+32xBNFjBVTKNVB1PSiSK02Yxc5bLCWG0sgokIgI9rL8kNCkVMHmw2t/i1XPvqu5WgBt4pF4E6NfKTChsPRg0T8J4acbBFTIo+mWrkNm841sTr2z2IUCWwb+N683RX8ELgUEfPQPxG9anZ1oF6kpxFHxRcTn1Am4A3kk2P1J02LkLmvo72eAVlEwtzsQtsAdZ89ooKS344Ha4uE2qfJqIM4uVJB6WoVsJoC69SR5DAKTM9v1k/bLObPMTGMJiyDmriBuq41xgb22SZ12PnQvZMK2KC15mBjVgvsErgRbtkXycWTYjAJmUOdfLen6nzNIUxWDaXQiOJen/U6uDbWLiK9nmzDhzryGU05Zh9G9mGzFU4UglkH8tuuZvE0LYXcmAXG1uB5BdOVckosyoL4X8fEMxv+22/jZ/4iZ/gh37oh/izf/bP8nVf93X86I/+KL/39/7e9T2f/exn+a//9b+u/1+WhT/+x/84n/nMZ9jtdvzm3/yb+emf/mm++7u/e33P933f9/HOO+/wp//0n+Zzn/sc3/zN38w/+Sf/ZAXGDMPAP/pH/4gf/MEf5P/8P/9P7u7u+Pqv/3r+xt/4G/yu3/W7/mfH4EM3WbOwL/EPm54I7g936OXMcCppxmiyZzE48KSaM8S5BZJP4OqZ43nRqvWHrdokIbXScji5wIvD4X0OVHdz16jUUVguleWRk76nZsCUAIgaVSIL47MI2WOTi2V3RGULRg+oG1i+osBoWZ5Wm1gkKsuuGegFz1aSTSaqoEsP9qfz9JO18+qrf3oWezb7BZwigaNGbYyketZQvbnes7CXRK3FA72qUT00KnVr5q2hnKL72nvsCyK1rEcWJcxAsSAozvlTMKWcrozD6ZDXJEZ7YLdMUQpmPbUI6Q5zmh8tuAeXlEt7vweKWGEhGl2FoUEqvudGiqbP2KohQbVn0jNwHxhulbQ/mRk3OaF3X96UDoJR6nUmROv3ithyPm4KIShDzG72i/vimYRcRLjLA7lesokmBJ5CZhDMYaGZQknXelAPNCua0y+e4TO719zKulkDpKqN+9Gbl6EKswRymyjV9CyPJXFYEt1IWHyRqQ+vDAAxVgNvaXCnFmVImSlWHm0Oaw/eKvINpBFDQYhIpy89mDxeHl1dv0/TQoqNMZX12Z6LlWmrCrlYxr9xJ+fahDFmdmQWTPqsItzWibklbuvEsY4sLZhIdoXcRgtQokQplDas4zlKdneLLgpnY3lXRmoTnrElBLgOexaNLHXDLhyJFG7axET1a9ao2DqrqTlF1CZkgVua6dCKt60FZvWK/5cRBCP65e5C/hptNzc3PHr0iBcvXjwg5H/U9vu/5U/w7q88Y33qzrbTsOn5i6eXen+wvlT+7D2+1QfQvsSl0PQsMzwpz7gAt+C/l7U3aK4MgVUuTSz76y4Ep35hf53V168NYv6AF8ZNy9dQdgqbtsqT0QQWId0GhueB6YVngYprXfqXC2rn1xr5STOSexbkGJHZRbMnpW6aOT90OoLN2ae+Xzs9CGvWdz7U55ng+TWpeG8OL/t64Ksf3Nd5ObgH0oYdUxvMnb6NFkjlrBe2piFOLwgLhKMwHDHHi8UywZBNMi24PJycfyYfHmh6tbu6XF3tNlXJrqUUp2cUX3yM3j/cQd1V66lOikS1YBQarQZaE1r3WSwQ7hLD88D4DKYXRvr/sJ6l38XkSyvPzm9V6pNigRcbizAocaiMg/XIkrQVgCMCY7S+3DYVhlgYOhdPzLB3LtEywfZAz8XXiFbWs+LGKStcx/IDg2lH3LMZgNKC9f/awFxMEeXovUDFe36cAnffTwgGMKvNVFVagyEq05DNAiplW0Ag1CYcy8AhDxzmgZITrb4qC5Sz4+znYNnfNBWmoRClmfVStRLtGCvXmyOvb+741OaWJ8PeDIRDYRMW4/m5W0NpJh93VzfclolDG8nNqBQmAn4SGcjV5M6iKNuU2SUrWUcf5ygmVj6EShJT8jFlnxlECDQuwykjPYV70/rchIVH4chVmLmQwuTXsQLZM/anonzFV37miw6A/yPz+Edtn2iBfsR2AkR6Jri6tbNmLevWg2Tv671EezgFtDOQS0pIchrEqvV5xiXsgW4FwzwExaivwrtgtniQ682cXvI0H7zgwVKpm0AZbXItOzh8StFdQzcVSdbrQYB9hNvE8FwY7mB6bhN5C0Z1yFc+BiK00GjXFb3w8y4BDkbQ160SrjIyNcbYDL1Xxfzuuu1R7+KJBatOcVipDg+ABWer6q4Qc6YUIyqnnz0DBD0pyYgBeFp3pfDPV2m0TUMnz+icBtF7fxQLsuEoxOyiAMWCbbdVWrl1YrB8Mxhej/ZDiwk9K0RsgRGKIUzzhhVwEopd8xUpmjz4bRW9aKugwDgUYmos2QSxtdkXSyDeJMabwPZzzXid869+bHUHyyM4vtko11gjR8UWHakhAcahMqRmnDh6GLJrVprx1qZoNkQILG1g79nf+RFYoGt+++vJatPfo/7vOdtIzgcPZQrVyPJY4CqIq6Y0jvj6U6xc21Y0ollK9fvrclyYUmF24Mz9cTTNC2BKlaKBd/YXJjdWLYjaz7bg6GLzJxHsPsKnTFMEQqpsp4VpKIyu7ZproNRIacIQK5fjwlddPufxcOQqHtmEYpqgQNWEUhmlgAhHthzaxPvLJYeWyKt9lH1+CCBq/T3xNsrlsPB4OLBLCyDc19FKwqosJIJPZ4+HPbt434vTQGTWkaTN73t1ZRoj6T8OR67DgSRKFeHe4dc9a38kyvajpCR/DbZPAuBHbS8vSj5skdLv6z6F9ADWzjiC/WmtTrCK0X4WAc2nIFjb6QltQidriTpfBm+w9wzQkaYSDFDQy4EGfLDX1CcIO0T3+XNUZRiEzeeF/Egou4heBHRwAuDYCI9mchrQQagpMNxb32y4gbg3E9i6BQlCOAZaVnRjPUCuspXWGsgi1hMbnbkgShgqzdE2eiauudIBQ6OjPtUbdR3qfn5NOj1BvXTWbXwEVmi5BVXff/ApoXFGI7D3xH1Ej5YB6niWvbvVEzh1BFNFCdlLlF4ODtHGJ2QD2aTF6CQf5Sl4fnt16kRrEIsis9EuWhQLelGJB+vbaudVVWgl0HYCE2SJ5BLMfT4B4nSaCm1XKC1w/5WBzbtWVh0Ofg4fclzhCNN7IC2w3KrxOC8UhoZW8xo4aqIOQk6VMbW1B2nVeeE+jyw1cDUuDN6ji6EZ95Le87Jzr+r3it8nXbMTvBe4lkHNZqmdTfAATYVjTfY5UtkFWxDkGrmMibuy4b4M3C0TpUZCNEHt2nxiV7UMsQWGWBljJWyOHLP5/z2733jJshJpvhC18bXztky2qS2MPlhj6y80tJruZ22BUgspmtpMikqKoG6/9N9vHhl6eoQwqpWLw0mKsajZN11wRKMSp8KzfMG+ThyqeS/o2TMwhkppZrK0LwO5CldDtEWKZGIwy6iKuDObcl8G5vqE6+HAJmSQxkxiqTt2snAZjwxS2IkBh446ojVwFY5sggXGBAyiTNg6alqlrb482ycB8CM2rS/duefcPs7nM/+p9/761lc3vfcHFvjEVVFScgeItJZFVwf6Tn3oge48Ezw3yw29vGnlzxb7+6zEqQmy0yN6X1DFypY62EOUr5VyZRMtyZbUgvHtqgZr00tgLKaSIhgIo1zaxB9n81/TCfS6OirRMg4NjXSVGbeFYcgMQc237DiyHAe0Wy2sWfX5WGOlWHAyPKiDUD7QWtGXfu77O6dpgvd11VCvHY+UQbJliC2aoEDIArPSdh7QhwY1oIdAOgrhaICXtT87WFZGwcdPCb4/xxSAfniQeXCbYUOoTprXaoEPBy7lS5yYLyZPNoBOtuhRsTrtMGQLPrUHB6sGhBIIc2R6Lgx7N8n9CCC1YP1BI8mLEeIH71fnAEFpKOMEKTXvEYovVljpC6rClApDtPJnbml1DxcM9RlXOP4p3zNkpFjmqKzBrueCIsJWrOc5u3s5wOWwkKRR1OgVgzReH++tsFET7y7XvBcbL+aN+eUpRBcPaBhZfoqmDtOaMufJepWOHFtKZCnDw8FSO8/migK9R7hi4zgPhgYaSakwDI1xyKRofc6qwcjqNZjnX6y8vtvzZDry5njHa+meXThSDQJD5MxcWSOpKXMbHbgyUHuQWXue9hykYMhPVZtHRMQCo0YvlYofp3qXIjDGDAhZEyqNpNWAQRo5tIlH6cgb6QWvx4Vtz+TpHY/T3Z8QNhIZJP3vA4L5f9p2fmEUKx3YTe4zbHdseLnc2fVBzy+sLVnX7FC7m8T5e5orbPQnRnrTyf+m/203yxUvb4orloyBFsT7cYIOQt5yUjMJNvmD/V2NSrlq6KYhsRGSEoZG85WlyTo1wjEQckMlUAcrA6pAvPcAeoXx+a5my4SwgKmDEjbmFVbmSKkwC5QlQhNfvYOG6GVQ9SelIYOSUiUILNkntuY9Tk5lxpf7gtprkP6SrcD7f+yctVMMiqzoUUu7lNDEzH27/qk7yJvAtMnIWWnVFhHQ0bee9UWQaqajXW5MA6TZy3sfwQ/8wP3X7xu1hLw1XcuzXadV/ZJqPg2IbCo5CyGIIUJjo7ZA0IqGgEqjjnbcNYG6es2rilHnxQ2NStxboG+IL5bsfbXAIoFRGjEqooYsBBCTFmKfB5oGokTLdHxqHUSJUs0b0WkuS4sr+jI6x00lIGq15kRjioW3xhcElKMO3BdzKTjWgXeOFy7AnRmksRtmKyl6ee7JcMfzeSSFRK5iYBHEDHCjaVoKEKVx1IEUC6FEGu1EcTgr7qDiBsY9PHsR2AN4H8x1DS2NzZQZYrXxwqcT30PATJJ3g/H8WoUNC6KNpsrcoq+NLcgfqvEcD21iXweKBl98VIKyLjb6NW3a0ZqVhpBb4NkysS+JXcpcxBkFjjoSqIyi7MIRFG7rZAbFsZEIjMEW3FfsuQ4HdgQiA4nKSLdAsuqV3ZJ2b0a/A/63UYL5f9qmtVqwUwuGek5zUBysola2PFd56W4RvRR6Do5pumpoWp0rnH53PgMpNtESnNOmFiBFTPi4x9e+Pwc4yOBJT7WyTMhC3Xo22HtZfjgBSLcCRJsIN0pFidEBAKnSUqBKgZSM9F0gVvMIrJNlnMOd0kqg6AZ5bSFeF4SGlkCdEwyNmgrRmzlxbJQlmnq+vGKxQECrUkVhbEy7TGuBMkd0CdZf9Bygl8lWyTR/DVhFtEV0pUiE6tnMYBmvNEEXkMX/VH2lWjCAR/XJY+t90jk4ZUOMF+kya6pGVxCfxEIQ6oLRu6sdcszAoiswp2+/2qPffy8VA9yonRcCcmvankX89EOg3E6kXUamugb/kLp8WTGdRonQrK873p9Kr688JrVj330B5KkhElvo10xBLHggHvhRqwWrMMSy3u4QyBWnrZgBrQgsqgwRYlPGaAFrCCablp0Qr4I5zYsLOhNYNPFOvub18ZbX0x1PU+BF2/Js2XJft8w1sq8bgihzG3gyHHg07JliIYWZX3f5Hp89PuKzem0goWalRIu8yuTB6SrOTO5osZ8njiWdrQz8kRIlBMumTv5/cvo90E2ZxVdv8zLAKIRolZEQOsrVFiy5Re6WCR2FAeWzyyOrxITCo2TAlIoYiEUKMUKTyNISRx2oGlGxlkkPfR1fez6V2QxgONuswl0xmbSLmNmEhUoka2CvEzsxGbaG0ykk0FxmrmqkLIk6vss23oFY8IsIQYJ/rmWaiUhAWCifZIAf261D8/tSvOoJ4HJe6uyBLsYTwvNlMIxnfOp+ghKjkd7PA+U5tjvY35jaS3QwS88e5QwJyqoEUzbBrGsuhDoKZWOGtzqerUC7S3sDooFg5k8V0q4Qp7ICAWoL1GOkHhLT5xPpLjDeqGdNajy/akG1TUZmLxeNlgKpGceqLdEyQhXacaCcqS+vMHFnhDA0zxQ8tAXvpwjkOdGqBz4xPiE9CCjQVWSamGxY0VWpZUVfeo/OOI721Ids2Ww86rpq733EXiZSxc5zD2mOq2OEZXZC3VpPsE1tRZ7Gg7iLhBJn23/IRhdJwbLIFR3KKaPth/ph00Hvf9GMZ0iwxU2/ZwSbfGUsVuJu1gcMoRkwQwI5WOxDheEA40FXHuB5AFyz7LNjW66ENtliSqKiqdkM4tqgqpGqxpUbUuFyXIhB7THwiXeKeTVpDWJfm1iYYuE6HdjGzEayq7IEjmpKMXM1zclmujtcxoXXx1s+NbzgOh7Z60jWSGiN+zLyfjYn96aBII0xmHILKLtkpr3vL5d89mCaowbiF6ZYuBxnLoeFyYnx+zLwYtmwXyaOefQH6eHYrMWItdzd36D98UdVGbe9z6eMqbBJ2SoDvk5WrAcag5U1n0wHtilzkY5sY3H6wMhNFUNj+vufVeP9vSgb0zz1fW5DYUxmBHxXRkqLrHw9f5TBqj12HnbcY2hMobBvE83hz9aPDGS9AGAXFzYxI1J5FA9cxSOvpTuuQ+ONtQcs7GQiSuBlwsFCsWftkwzw47lpa6a0Amu2sWYqPcitUDQ86PX/y+kLWxau6vxw+rsYLQsMDlPvQbD5e4JaZudqMLac7igsTxmLErSS1NJIVYGdrNy4WgzxSQ8AwQKgNJAZpl+J1EdCvojUi4xEm5hSbMQx015Tlk2kjoHhDsJ8In5L9kOqgrRA2Qv1CtipBTVHIZ5zAU6Jsfo4WwarXd/TZc66XY5EJYZKFdufEdBlDQYaMLPcauhS8bqgCitCc72IbgHkVSsT8t4adUGc2L5uDt6JDVN/cX3QdQEhhn4LxQKiaYQqZSeEYp5+GpUyOkF+sd5jnA2I1P0Vz3E9v2o2qNZzNW6gQjUaC4u5VLQBWhusrL0pMHRwjiKhMYyGfKxvVg5DIl8GNu8ZGCZkzqvHp+cAK+3GvQ24NGG5NrePtrWSKE1pLaAtmrxVM5DOOFTnmBnqKrdAVfX/C0IjN1NRudHJHqEAm5jZhsxGZ4pEjmHgvk4sLfo+4AvzJYc6cBWPPB3uSD6Yb00v2IaFz8k1L8qWfRnNTT4E6vERF3HhIh25HI78huvP8YXjNc9ne19twt08oirkGNikTJTKm5tbplC4Hybujj2Q8ICmUVqw/nvroB2vzGD3fhCFZgFLklJKYN8GNqkisXPpfPw9m3w+m37poUQLyiFxbJHLOHMIiYs4k6TxKOwZJDNI5q5aX7MSUG1kqyNxnQ4sbeDoIuR9OosC0podFwYIui0jx5rYpoVEMZWXFijYgkJQ9u5UkYNlq/dpYt8Gcoq8qImvHg48CQXkyCCBQeK60Kxe7B0+AcF8jDfFkJo9S+sgl1cBXXoQC8FjYc8SfV2V4lmW2Pl9/tpZL3BVmFmdIOJDEIxwxgXE6A1JVi3QMomJFl9gqisjD5RNQsZls1hVYcojpe1ApoZqNH+3Ksbju0+MzwPj+6ad2Re/XS2m7qBMriIzOpDG9Uip7iPdS5QC41SQYJMliK8ZeuCRlT55nn+04kESoy/Ejalf1CIGonFDWEPZeomncwFh7dHZeLLO8lKt9BnyicbQuXgPytHBsr3gfEXpHwe0i0a9KmeC3sAc0EO0Mqtn3a1BrhYIQ4a0F/ReLav2HuQXuwYOWKbRunyZAIO4y72fY3+nqOmriwFiWvOS2CEh+8D43OyvYtZXfn4/VwHyY+HuKwPtusDkdJm+IMEWHRIwDcrNzOVoXLWyZiTKGK28eb5NsXERF67Tkct45MmwZ3TdvVEKQRuFyPvlkl+ZH7GXEUF5a7zlMs2gyr5tqJ6/7OvI+/mSZ/mC94+7NYMJkohBuUgzhcRShLu6MbRi51qo0YrGWHl9c8/gkmBfOFyyzyMv9huaRttfUGJQpqGwGzNDqDzf79gvg4OPsDE5WzNvpsLV5vDAFSFKY4qZ5CXQXvbt4x9pbJKNWdbEvprvYBghNaUFAwFVjRzbyNyMV2l3gLCLmUEKSxsIUgiiHIFj6xPDqehUVRhEGaWxTcbvqyqeIdp1bmrjKcDchAu3k6oaaESOOvBV8TmDHF3YyebEHvTsvITBMLSflEA/rpvEl0qZ5xcqOEBltTDqmVs7SZfFuPYQ1dVfpHlA6PWHwIOeYde4VO/xqOr6cHatS1fVNGj8YMLWGqGOjm5UcwyQ2foS1cudGqCMigbX9SyGEpWjzfhakpm+VgODxBtFakMa5F2gDYoslo1qgpqMLlA3aoCXq+pVST83F2e2AQAJSi0uuBsBX22e8p8OGgCwDLaXSiVWQjS0ICqGxnP1Ce0ebNWCoKqj7+JZqhd8/PCP64fl1lCSfdx6ybsn6qLUybQa1fuMoZ6uXVPg4Ova5FnnVK08WOxktJ6y1lpBcqBsLPAuO6ch5LP77le5Lz3x9fvKR6sbFBfvSQZQJ8wXZOWwoQoLaGzEapzQmjGCfOMDHoHqf9KS6bpOpUCtZDkTQgfntthfTDFDtYCbRYguiyUYeMUcxGzcI0ZVSFJIUtnJbNJkGFTf+uBm6XMRD7w9NN6vVxxq4t18wYuyMYeJkP2RChxrJFIJ2ti6/mXRgFHAG/dlcM3KxjbOjCGzDQOHlLjLI1UjgvJsntjGyu0yUZoQtLFJC0s1R4jWbEHR1En1Ckns/LPEdWEnAaZkAe5ynAmYWHRf90XUqySGhB2SIV5LEwtkCodiXbMUKkUCmhov8pY5RDaxMEijgAsM2OKyLzzmalZFSRrBbVQUG/tG9ABn99FFXEihWdm5RTahdKjKOu/0O0Sx4PjesuMyLlykA6mOjEz8l+V1rqb32YbZKxxClLCiQYMEmjYWrYyflEA/rlufBc+CX//5/LUQTwhPMMBK30Pv7QmnbHHd9anT8qA+3idi+i69eS2y9lIUJTYTPG7JMkRZy382H5kJl02I66H7IqyNwKRQ3Aq2grawAm0qoGO0kue96VsauqPfqF2f0bO45P2yTSFMxXp2D0v+Kw8pREdRdl1OHr7Vhsn7cSq0CmiwcnSCODSTWSqR7D0EKyefzl/gJJ3mE40EJ7b3SxkscKjif6trhmev+WUrzrsbFEaDxctyUp3RGLyMW9bMUaItNGhi2WEP0E3QqVE2wv0Im3eF8I6u+3p4V3z4JmqODRwsO13tkya3KmoBCib4HYFQV0ZI29rNNT8OTCWg99oTuA98fv8ej8LF55T7mFhegzQuyGCu7q0G/wLVwN1xw9XuyC4YuCOKUgkkMVpDCobuNWRiYG6JICNbLcwMXITMJi5nY6AklEdyJA4G9BDdMpv5Foe2YdGRKSwMomxjRSk8mo4c6mCef1j29GLZ8GQ6kKT4dbYJfZOsTDuGxn0d2ZeRy0EJofJ0u+f5vOVm2VBJlGplhBPmLVJQYmhmNVQ64vJMTUYjKRQqgW0qbIdsQU4DufV7VJwOgpWrIzRtlBZWp4qiiYYtJFsr6GBzTHMZM2P29fWdqa2g5pKhDqgbgqIU7tt4yjS9331oIxt3mhcxuyTjbVYL+g+e1c7dDBzaSCsBxd4jAv+f/Ihfn+64CEeGEIhnV7S2hqIctHH1SQb4Md16WbOXPM/BKsmHLp6sVbT57fRyprj2AnlAheh/u/L/OoBGWLVANQbjCopNdCZjFtAx0iLUKVBHoW4CeYf93B0JgqM/k4NhuqqJlwfD0quNnkUUIRzMImi4tz5VyGKSZy7H1asYbTAPwXJhxyUoYZvRySJISM3anJ759FqaArVEN2w1hGYIjZQaQ7KdtwalxXVSNaKyrTNai7QF6uygmNkpFA5AQV3ZRWTNjqyOtOaVljn1NMr7pA9k0xxo03uEdaunJ8VngDb4vntJtQkcBzQ0L1dXwuiCAAKaw2n8ZoEMcoTqknSlOVXCy5o9CH1YMBQsgC+PzGIqXxkiV3Fkq19riRBcfQeUMifkEJCbxPR5mG5gvD0tjHjpc9fvAvs3A+26kh4tNja9RxssgMdkAzRN1kdWhNmBJ1ejgTiG0Ii0s9KocJEWnsY7fuPuV1haYmHwe6Mx0Fg0Mqs5kc86cNc2LEQOdWAbs2eYjaaRpSnPy4bbuuG/3T5lrv0C2X0exDKiy2HmIi5cppkpFJoKL+qO9+YtL/LINi1UDXzucMV+GXi+3xqQSL2Sg1UF+mu1KsUXfSEY8Gg3Gcjl6faeTShsk9sW+eHc5ZG7OjEEmzcuhoVNyFwlU5xXhJu8ZZHEscnKp+zUioLJmZWg5JJowKLJdVU72tOQralVNmmxAK2Jm7ylascS4AAc4Soe+artM7JGskbuq/EfTZhA7aY7u0us9GqlVkOCBnJNzGHga+MtX5HumGQANYT5+XbQwufqwBufZIAf083uoFMQ6xAv5aTiAitac/X8O+8R9uxk3QenGa0rxbRmfb0GNhOLl/a6wDNIFHDl9FYVXSphcBKrigMiImGjSDZwAgOAdtCmBS13NteoVMHAGs0I7n3CJ5mvn4E1XKy5nUqDKkA1Ps9QzUOvDoK+NxppfFeQyUq9VobUVRqKc1K4l0e7XFfOhlrEs4QmakppJVnRpoOIRAmpQVCaKGTvA3ppsqt59OqrRazza+qXzobUgmEHixQ/toxHIiEcgKTuyK549fXEMVSBbFxLg5oqtEgrwdwuYoPYPKsPlnlHocZoY7cRphsod0ZJ0GL0i5cS6Ae3Jdg1mN5T4s6ASeUS8lasZIuge0HHSCkmWq0B4lBQiWhszClRL4Wytc+PB17JU+zHcfHflXIP892W9naG62plcYEQjXKhKhzmgVwiS47spsyUMvd5YimJTcpsosH3x2BU7mONvGDLv7/7at6ebrhOZn9m/SSbcIMoo9oz91q84xgG9jFzX0ZDhwZzexBpXKWFMVTG68J7xwueL1uWakF1n8226f3jjjoaeKP3sK7jnjRVdnHh3eMlx2ZdqgtXr7k9TszVfP/6ox+jC3Frr8w4orIqh8UoFe+1C66nI0UD27QYVzI0tikzxmLgGw0cSqIEA5vY+yrXac+sA0NNHOtIplOAhLklqiNlt2FhCI2BShTL/Ko6hQqTNHteAttopeZPTS+4qxOHYuhZqwAoRSP/v/0THo2zuT1Ec3uYmy0kmhpFoyFr9gjmpkEL3OSJHCNFA/9v/Rq+Zrjh/xjf5a2UufA1YEVZtLIg/ErZ8kE781+77ZMA+BGbSEdnOkkqplNJ81ywGjhx/c5Kox3kAmtmZ04QvUZ3+t1qe9TLpR38Es+cIbr49WAmuG0Qoz6MkDem9tKFqTVgV9ftcerWbHYAOvk7OOoxeK8KtczQnAl8EvZSYLNqk53iWSDU5PuooBJoByuJMSvhotA943rUGzZ55TsZIAOG1BiHwpRMjyvXwHEZKTUYqlOspCjYmqHOEV2iefRV8bKlZ3K1HyCnAAcrCMdOAOuR+rmGdR9n5+ckck02js2BPdqAsVk51K1rdM1AxUvKDvkeMKkwn8T1LFMV550BtAmOj2FMAQnK9Py8yPQRm9rflo1QN1YdCI4Mrcmv96CEqSEJYmyUJdFyINwl0m1gfK5sXhgK9EMzTf+s/AT2bwXSV+9J12apagayfUXhWXZfJImY+awY0vByyiCBuUH0SBs8KwPh63fv8DTeM2sylROtHHXkqIm7uiGryZPNbUCBy7jwZDjSwcP9kTpWM9u9zVvu64alDqZoJIqIBb1ft32Xr9w852m6I5O4rRvu28SikRf5gvuy4XaeyM1Kj6bwYjqfeP9yGow21BRyMXNcEa+GhMZmqOymhbd2tzweDlyng59/dPJ55HbZUR1Z+WQ4so0uLO09EEWw3C70j10XJJ7joYgR4Ju66ooyRCvproo5KKOXnlWFfTPniLrKtsEULPj/ut0XGGPlWd7ZuLfI43S0MqpaKXl2E+OqgaKRiLUltjEzSeYiLTxOBy7SrfksSqE7qQHcauKX846DvqSm82u8fRIAP2qLrtbioApU18lATg2AUyA7L3V2tOg5L/C80cLpb859Bw38Iqh25Iqun6silFHQZILIbbBJuqbev9KVFN8CUHFTVyVUpR2dQ+fHqOga5KRg5UAPBC2xqpr0WdAQqH6cnkW2pCvBXoOXWf1Y2n1Eh2blUBcFLdkm+RgbMVaGWNzCUMnF1UsUxmR6hLlGtBnopanQFhAx41MNZlXTS5oKvkA5myXgYSmUUyVn7bmdR77TWsAy6+ITiCo6NGRjA6RqjHd1tWbBA5x4T9HJ9x/mNWTqPN6fbYGosFxCOIJew3QPTvM6P/SH+8Dek1AHKik6ybrGiqGL3Dh5PEd7vSk6FlqIlK2QZ5smuy1TeOkzAMpGKbvGjoy8EDOz3VWiq/ipBkMOe29MUEp1MWqnrCxVuBoXnoz3ROum9QIcF+HAr8yPeT/ueBQPJBoHHSiaODQro6oa6AKUbVicKeT0AoRji6gGbsqG0gJJChtZ0GQgkup6mbvxyLvzBbkF3ht2XA1HBmlMkmkRPjU+ZylCmCpLM1mw4nZKSrBysarprSazg0qxAMFBMXYTtQatCi+OG0YyMHERjarQNDC3wGU8rFqoRYX7Mnjgsvs8YNnVGDJoQ0Kkaly1U5camKuVRw3k4hSTGqz/6yjUJJXShE0oNIxDKFqZpXEoo1fnlUky7yxXRGmMIbuSTqYQyTUyhcw2zEwiZKIZG6uw6GAAnNDYypGoylwjv6KPObSRSznyKJnd7l1LHN3C6axW9mXZPgmAH7EpnpEpXUHsYZA71/qEUxYID7O/9fu64we9QFOZwXuBPg93T7GOTxZbXcZqfT4kUDaRtrXez5rh+JeoBSnrUZn8lU66Aj8kCL1bLcgqWk11cIWjTzX2jAhWaf7g/3cifhs82+kmrME/183tTejaHd26CLI33UtLjKkyuRZiUyg1slSbzGIAgjmI12qouLoEKyX2Eo8Kq39cvxRnrQrpiwwfI424YosSm5WexUtYXoG2Ulb3VGyGpm0tmGrMthHGZn6CitveBKNdlLC6W2hQt346i6p+vOs4Nju/ujOC/PJE2DwT2sGV+z9ihgh4GbYARWlZzGuxk+RrcNRxoKmSkiH52mRl4zYG9Gi9Uqm2IPiwjHM4Cvp+4O46wdOFy6tMHJpfQ9t/HyPTy7QVmBU0hKUkGOBQlMYlr417LtLCRcwEGkcdmeTIZVgQEY5qaMxZBw51ZMGQm6YCI+zLBVdp4SrtSWKaljH4fkJ1SbANx2Z8trI6PCvP8wUp3jPExhDVuHHYvlWFIcFb2zs+e3jEoY6kaALfm1Q41oH9gqkYYf21KRTGWJglkotVApRArpGlRbYEjm3kUgrRjWebNq6Hhbtq8mNBTH5tDEZ2Ly044KUD4sRFAMJaJFKs32janRaQoihJK5soBGv2W6DUxCBK0cYmFgSTl5MW0FhWp/j364630y1Ph3sKiRfF7JWC2KIDCRQSQygMZCrCNhQecTT0rJgbx04yo2Qmp2gsMvDMwUhNTbO0EBipn9AgPq6bdPuinsnBwwB4/v1VSNF+XVfwzFnADMEVEE7lIuPLOfhFFNzCSKPre45Cm0ztZX5kzuplUitD9oxvsEwARzzWqVnPadOsZDgH75dZthEKhNmVUxRISh2E6lJhK4cQW21rssxFp3a6e9ZeGwa8cK6fmer2qKzEpIRo4r6bofD/evQ+U6wMUrjJRkS+WUaOOXG/H1k1FVXQFmiLmH1SDisYpfdUu5pEO9cCbadjZ9NWABA5oBni/iRn9mDqVwsGoRmKUifLdjWplT9Tc2qDv7mIjW2R0yIoiDVeo55QLSqw9J915SwqWM8x27HkCYYg1KhraXZ9Hw8O037f/FQbSPbS57rm8mpC9XJkFsIxInfCcAPpThlfWAl7rUL02/bss+qoPP/1ML5WeO3pc4ZBGaOVxKoGbuYNRQLWQlVwxKGVuc3doFYbk6t45O3NM67S0cjldUMKjdKEd8olCbPPESBJ5nI4gh54US44tJHny4aLtIAq93laFWVe5B1fmC95sZgTvY2ZEIKR9wXl9e09KVrg/sJ8xfvLBZu0sAmVbZi5rxN3ZeJmmRDgrd0Nd3nixbJhLtHLoBgtRtvqODHGyhArdcgcs/Xm0uq0XlCUuzywNCEFJUkht0TWwEWaiWLTzNLsPYdqZPuipgsqLizd74OmgVyFpSVTjhG1HqDbEYk2VHRlWk2hsgmZy3ggBeW+jlaxV7UM3UKtiQ/IzKLRnDSigYTs/wZgik7jGMPCLligEzUxcVFzqh+kYNhVK5MfPYsXOd3JicpGCp8owXxMNxMbFi+D6imwraAW8BTD/6CX2vpEKKfA2fmE5z1DpzWsM1snBqlnLc35Z9VKhF5zQ1pjWyFfQLgI1I2uhHfF+jltMpeAmO0zWsVManfV9DQzNPEJOUBc1E1lARQXfbfDHk7Zk/XZxJCM6gHSaQsODUSPAQZFUnPKg67DV4uBoQ8I/+XZ6zzd7Xk0mRdZl8S6i5UhNA7zeBLCFkUGrC8nDcne3KtnD47qOkEAFvB6OXIW74laEDMz3wCzAUikqQNlPCh5HA1gY9SE2iyt1iowVc+uxb5PvkhaOX+YkACCxnbiRI5Y4PTjXqkpAy5Qbln33VfAdGM6q+noAeqlrZ9rzIbmrFslT9bXrFlgMY3Wtgi6rYiXq9vGjnVJkTbaomm8hWHveqWv2EIRXvu/lPmtgffuXmf71p7doyObMTPExtPtPYcycMwDS0lU7Uo+dv91F4W7ZaK0yF2ZeGt7wxvTHVfpgGDZfcMoBd2LIOvgjlWNXZgt85DCXd3wLF+wiZlRClEqm5h5e/OCbci8KFtuFkMwisCYrI///rxlmwq7tBg9QwP3ZWKWxj4kNqFwPcwMUrmvI3d5Iory2mZvRrp14JiTWQVV4Vgs2DWFMVrA243Z0ZCRpSaezTvmOrAMC7thYQqVFIQkyiDGuSvSRb8rUxSEzCJWRiwaqS2uAbCXfFMAMDuo4tqhtQUq1bJSXIGnC2a3gYaw0cJGMkM0w9s7aRyandu+jvz341OejPdcpdlUfKQRtXrp1cYzA62NNCIbiWzCYlzPfusTSWLzQvd3VL8bjCxhrY+NfMgN92u0fRIAP2oLrypjnkqXFgj9505+6TM9+PeAyWOEhxngWprD+nar7qd/dxd4DULdRKMhRKG56kvZmBi1ZWg2gddBKDsrcengGcvgX2DHuASzxNkLcbFyWbf1aRjYpQ1KfqS0XYONNwErcLR+KEOzfaZGTApqwBQ7ZwiTImmtGfsKT5FgDg8pNYZYjQvl43BsE7fLyIvDltvDxHIYaCWuQcmAO+7r15wNqf47fDHxcnp0VpFmaoZwBWQJhLtg5+3PXzfcPc+07LvpXtakZvY7NWSwMWldgboBJZiUmgNymjRbcIyNMJoHpBaBJVgW2zmHzYOkr4LN6d1EqtNejSTfXj6m03b+Wu/XSrD7IWiw0mhSJEcbt2rnHPeBYS+k+2afdeCV2qTrgkJh/5Zw/Cp49NV7NpczKVQHUJjCS/TeViNQcyI47Ndua7vmu8GQj9tUmRl5v1yw6MAUsoE0sKxkcteG4BzCYx14li94b9lxkzeIwNNxz7EJ+zayaOJQE5+/vya3BDQ3jbW/F8wh/ul05CItXn0238Dej7svI7lFjsUku4KYwW9pwj4PdJXYy2mhuQO8vda4GG3xVtRc3FsVpsFI5GOsqxFw1UhWo/mcblS/fjLQ7aPmmrjPXvZ1ukLTQGldieV0/aNY9jmExuT+hVNYGENbg1KSyqWb6Q5SOOjIXBPPy45DHU08QEx5543NHY+HPY/CnkJk0UjQSMQc6KdQCVo5Og9zkMIuZK7Cgas4k6jMGqkW5j5QVreFpbKVhW34JAB+fLcxnQAs5/29PrP2ZQ1nfZ41k+tB54xDqG3NGEwO+PR+7T0h/3PUEPUIpsYSgvH6gpUrulmuVEyfUjDeHgb/r87DI2PZz6q2a+oumrphp0/8rm8pxSbQ4QZKNlSnbryUN6qVC60GA/WsiZ3aGqTaEqCavRKBtd8nqLtnJxYJHJfEGCt3y+hlk8qglYuwECdlxiDnxjsQy/60ryPVj11P16Bv7Twr9LE/ugN2UgsKo9VHA8GAQPUkgr3uTb2cVzF91MUrr82ySZFmCxVsUaABK4NW6wfKbMfZakCS73DwTL77G/ZzOsv8pZpIeZes6zqd/XZ5eRNwZCkM90rRns0LpQhpEdoGl86za63JgrqMVkloAmnGBA843cp9/03MFDeIcl8uWd5KbC+PXF8e6Hy4pQU23tNLUlhqoiv9bJMFuG1YGIMJdbUGex0oLbCLpmiSMNJ1rSMHBvf0c5BIg0kWLpOwr4l3jjuGYOouInAsievhwL6MLNXslEoLNrEn663tF8vgpljpykAGQHE0ZHMFGr/LzIYJrkajeRi1QExZxQElqoF9TswlMqbqNkxllWaragsddTL7EowCkqTfy6ycvNaMG6uYVZECxTU367pIa3T+XuxZlxeYsgQGKWSCLWqDlySDcqjJBCQ0EaUxSOZRvAdVoiZmTSQp3OaRSRY0bLmKM6MYf3FwvG1toCKWvfk8F7DFUGkBCZWNZIRMVWFhwJ4kU9/ppdQkjQvKK+7oX7vtkwD4EVvdjNZLay9NPK/qB8Ip+AVwCXzffHY75wIGJ7R2g9sQ0CF6P88yJwSjO6ST7BlRaGOguf5m3ciJohBOX9oCMlbUXbtlBlmiEdsLpNkygQdO4D2GV1Z6g4BJpvX7tAcREcJQV91JreLKLnIqDSunWiLWxwsJYqzUGihFKDWSWyLGSmuBvETyMZ2yv7UsfMrQ1p5aL3Ger036MVbP6tS+G8eRNWOLi41JqLICc8+Q/OtVE59dxHtZDIpMVh5fyfd9AJ16oqKEYiVaWSKyxdzt+/h07qB6wbVfOwVtSpvEepTN9Fc/TKfzwSnj4KVo5dLq4TwWQSQgs9JGWf0NQzFBc7O4UlJW+3t45WfFCpoh7xPSCguBQOJQRh5NB7apsME4bXM1kFIIBrrpprbTULmeFh4NByYnXGY1Y9xCIKsJJHStyYCaK5XC0hL7NvH+suO+jFS1XlpRkw8rLXCsiWMZyNWyjhQsG2oa2OeRi3FhOxSiNJTAUiPHOjDXuCrC9MAfpLl8mZVWlXDmqadcKdzlibt5pCKW50gzDqB2MWy7OVNQ7wUqXcvJ5Nba2jcLYp58S7OSp60zZQ3O1dGo/fONaqFUYIrFsr2zoDoGC8LBb+5MZCNKI1jJWQEdWWS08XAwwr5teBrviaJcpZmLYD5hR00sGrkMiyFIPbM2cJFdrU1YeBL2bENGERZfVGy0UjiZFQvKSDHFGQfEfbm2TwLgR2ztcoTNBMfZW3bC6h/St7X+JKeSKOJ0BKAUbPJvZ3ZIwedB+7nb81hRJtq8moR8GambwHzlQszF+jU6wrKzCb0NXv6LSt5hIJaxWZ8L4GglTw4nUnvIWM8LO+4eoxQseEbPfBTLaHDpsmhlTwYlbrNnZALN3OMtOPnDL7YPCyo9CCq1CLU48dYXDPMc0WZwU/X+mQQz4F35DRbJWKdnV3Gx47P9nIxte8JtUmqKIlGQxcqnIdukD6dE/WSBdJZQ9pV1EjQ1g/0PjTAWanWwEmpE/KNYibNaD06Dr5oGyyCY+3FbGdKc41ntlyis5di4QLoByabG0ysCHzVNrENUHL3aTBAhVHtNm1h/T3UNenFvDhXDXk/snLNb+uX9x9l0S4/7BHeFPAXipnIsiWOJ60QNhk7EkZlTLDyd7nkyHPh1u3fMeR3lpmw5tInneUsFShu4J62izAEDtyzNrJDu80j2MuBcE7l2YEUfANbyoKBMKVNaJNfAV1y84HKY1/Lii5x8H/FUjTmVcAAXb4jmkpDk3Kce5jow1+BUDBhitd+oeqCEbTLlmylkWufbIZwSfvNHLC1Qm7A4Z7KruGi/zZuQq9+h64VSUFOcUV9btSbuKlENqBNcK9f/ojSrIh1LMvUbWAOtuE5qEOXgvMnazAFe/VHb6uIBXP3aVJI/dG/EO0Y1vcSquMy1qYhapmg3d19QhgA7qUTRT0AwH9et7hJtM9gKuhS0FONtfeBi+f8fOLz31wbLBmtDSz1N6CmcSoOuBCMqaO1qfs10OF0Hs1wGytayFakGWKi9rOVc0nQAHa0kc16a1NFLdYe4VgdDsSygH+p5WA9Oh2AGbTYZkTyx9QhR20DYVOtvufxXy0bulv7E0OkHXtZx6bOVh3ieeXWqZP+q/b08PLgeBAXj10W1IFhYFx0Wa40btUaPs/6YdtWX/Oqs7/zyCSDFg9TzhF7YBBw2xXz2NMDYbHEwB+vx4aXpJuisSFO7Bj1WDwrBs8QuIu3iBZLt+JYnttDRCOONBcWPCoL9NEKF6QXULSwbLGNVGA5+3i6crqq0rfEQM2a0+4FKxyv2P9zDo/+i7G8nyl3inTcSF48PXGyPpGDlucX5eLZejCwV3p0vWTSxEPmqzQueDne8Ptxz1JlNyNyULfs6WP/QP9MyDBBRxtBgyBzq4BzZRqAw17gGvS7NBnbP3s0bJhdY+MLhirs88WSzZ5cyUyrcLRN3ZeRYBvfQ8/vSp/mlJdoS2AzZgSt2ZA1hSkZp2IfGoSSOJTmopDjJXziUgRobDdhEK/lVL+d2Hp9gYtgSAWmG1CWc1tliAgajmEDESeTBwUWelWqzapJWYUQgNFrB5edMJ7QCN2XLNiQqDsYZ9gYqkg37omQSiyb+2/EJd8OGfRt5Y7xjKzNNghsRRwYxJGgH5rzfLtjJYvd8WKyd4TV8s1AyPdcgjVGUrShJlHv9sDvu12b7JAB+xNY2gfz6BcN7e8sexsEk0KqFlz4p9EuonRAdXBatWdATMPPbGNa+4qr60hVgYrD+XjJFlzpFluvI8XEwncfBsgFpNsmXrZW02mizojbQja7lUMERjvcmExaylfvC3OW0eTDbGYkdJ7aLoyQxII0/dxoN4BKuZqapkFy7s5TIYT94tIAVTRHUSdkGgHmZLbJ+thvoatPV9sjI7C8fp72mqkgNJzRlk1PJs/ZD8Pf1MmrPojrwpJ7NMD0wcRqbB84bnVJyWWHbSFvvBxWfeBHUDXtlH102Tq13OjV0qkbdKE5BKGIi5esiCStLHlll7dLegtL0nFWe7WwUXhmo1qxhFGrCxr47V0QHIWcbwzhbUI1HtcWQvnQvf8hnaIT9pwLL00Z+0rjYmcTae/eXIEIMlTFVn+x7YIqICPs88bXbZ2yjZURZTQj7RdlxWyYPQOKEd8OB9vLmfTFuR1PlWAeWmixjerBCklPrXe3/h2UkRZMdG1KjEThW5wY2y/5iJ55j1kQpVKZo53CsyVVbwvpe279wKJ5FtuRdERP+tsAkBsKRxtb7grUJi7unC/YctGYBtTZxNGlYfTBtoen8RL9NgjTz6XSATwxt1UKNYoAb6/l1BKj1bWOXHUTY62AgHlX/PnBoA4smmvcVmkZe5C0Xcea+jWbIGxZoyou2Y98S1/HAINXsmoKhcVMwGsa1ZG504qZNfFXac+kqMtCLZcqscNO6PNWXZ/skAH7EVjfmscfrO8KxEPYL4YjNmdVTd39vt0DSB9mNmJt7cy6hKroUGCIa42mCp4M77A+1AbkSjjA+b4hG8oUT4PtNVD0zEUVHm+Aku3JJB5gFHFVmq/6mCqOcDF17giUdcOPno+bijeCZFe53ZxJLHAK1JdpgJUEJje1uJi+J6s4Avc+lractTrj2icI+5nT+IueZIi67au8TPw/h1I/VbqgajGsoWJ+yl1VVde0Bwul87Rrp2nPr0lJrYSnoWbzsv7SSXbyLtCyUWWBbbdUOdA1XEYGLgi4uYpBtYGUWG7+maKz2Wu8fOnjF1a7MzkgNjbuIUIMy3WDl6/LhgalvioGhUoNaLGB5TdHOKfr5iGmaMrFaJ61i4B/1GQ12n1FkEcIhcXhzy/FiYLrIpMF2oA2yiKmQ+KS71EAg8J/u3uD9Zcsb0515+YlyFQ+MkrkrG2aNIGZd1FpkaebS/mgwEvqxDma3pEaVWFpcpcr81rVzeOlenmugzSOogVzGaOT1sQYPhtbPqmoLqo3316z/J46+NNm34AujLsQ9hmLZXgvct4EkFpgagaUKz47T6oMYxW7uhphyjoA4H9gKhkZ1al3kISjBKSVdMaaVSAx4gLUAqv5cleZVDvd9NGWm5IGy2qMstoArClGUiUxKhTkUV76JBLFS7n89POW+DNyNI4/TkU1YGKg8CjNVLRtUaUQ1W6iqggbhKIEEvBb23LfAfQ1cxMro+X1VWDTwvE0fcTf/3799EgA/Yls2uAZkQCWZA0OuxLsFjtmyiLUi0VGd4h6BPnnWBlqt/wfIkNB0RotYM0Hc5SHQhmiAlwR1Fyk7IV+Y5Q3Yyl0R6qjmyL1qfOpKrkYx4Itrfna7nXVi81mux2kRC7A6nEmbgaMcHS8XIYfA5fWBzTZbf0xtcigaCdHkryT0dMsOpGeBfXhO3102zEnTPRsTOAUXsb8Nsa0ZZC2BVgRdOkcQu5NFkSWsbhfiTZSV4nBeYn04DPZytAmjrQo6/gsPVLgJMMkC21k3xko/QDxEK2MKprzjGTpNIAfCIoTFrKvWY8L23/t1lq1jICUN1FGJWdfj/ajNk0lX47FMPhQPsp5GtOj3RDa+Z9CP3OWDsQrVaBpxgSX6GEgzjzyNTINlHhfDQhDINa5lv7mO5n4eBJXg2p6RfTP7oXOojz1GjVIHbvPA9TAbPy80bvOGI6al2bwEeE69tVJ6QKSZTFkwIE637tykTPSTHoIyROVQEkuzQN00klvj6eaeMbQVmNLPo2qg1LAiR0WEIbo4AoGGGggN0wQVsWek6kPqQ//RwNnehesVEIwy8ZDbY1dBUTPEFUPGblJ2H0KjQkSpa0ZqmhuWAYoE7whGk4kL2airaplpwxClk/czx1hZauSm7JhqZReL8R8dmPM07Xmabhm8FzhJJgkUAlsxBO37bcMmNJ7GgyngYNPUnY48axOF+AkI5uO66SQs14HxttEGQ/WNzyp1TMRa0eBlrAA6ROp2oA5CGyPpUAhLI96aYgWlGscPzxI7b01ssqpTNITnIJQNlG2wrG9SFv9eN5blNTdxbanRts3Kgf7QCNYTk3Lq5RnMXtag9gDwIDapN9cMXRkfrl+pqE+mar0+aRzmyHY6MsRG1kgUGGPhXifSWMz01gPamvD5DzYhnDJASxB1nRJaORMY8GClQM2OrqtiB9v6gWLBx2H/TZSOnQkdkes70Yah9V4+f5oRwpMFrB7Qur+iNC9zqhqYpcoaXBC1TLxEJHuJun9EFTh6HG1qEnTLGdlCPQss6/BYGXrwIRNoTRn3ai3VYJnsiQX26i1UA6u05XSi/ZL28XxQ/vbvX+w0FGZoj31BpVYCm4aFR5sD26GwGxYQ5dgS2hpNRysZA8+OW0qDpcWVMnGszqcT1mzOMhGTPXs0mIlsdnRoaZwqJr6Iai9lgKqGeAShBOs9lWbXMFB5fbtnEzIiSm6JTbAy6x4TwA7SWGrk6XDHdsiIwF2Z3E5oYKkWwI8lkUMkLxNR6soSUqxc2Y+tqQVEcdCT3eL+HCAuAdj5fn6HqJUF+r3QnyP7ZlWjJNX6ap6NRinmu4ip6ajaWBcRIq4TKuoiG5VtyMwkUixsw8zSErMONBVyDezLwGUwobhDTeziAgIbWWhNncKycMHRFgcGpeG9tkNQBirHFvhv7YLRA3JWW/ibyk37BATzcd1KgjJZSWS6tflqeToSDwb/j8cC2fuBFcKxAIPZCV2NJg+0SaT7TNgvSKlI8TKRrxzNSw/i0mhDNM78gt2k4kCCO1/hJie5owZjbwE5CnVjJG8p4jqiWJmmB0F9aXJb/6NegnGytbBOtF2Le8WjNUc5SqSK8Oz2gsuLme24rCvXq83MUhPHJVJKPGV18CDoCV7aCUpQ6+usWdpgNlBaeZAR2Hn1/zdah4SrrI4Xiqw9P8ECunRXeaeHVNUT53EN0o62bGL0vMmDYQOtNtZWcrbr1RcKVrb0gOdWSCZHJobHUXUBAytLCRiK14UHBC/FDuKgGT8mBzaJFQ9YnhjoKd2bUouuCKcPD1o9W+uLrHD2N31N8KVua6Bsyu4dIS1wqAO5BY7ef2syE2Ljclh4ko7kFNmXxn22vl3RwM2yI9eBR5s9l8NCcAfyUoNnKuasbhQk4dm8ZZMKV8PMJhVekz1D2HC7GEG9iXj58BQE14yQQHOT56Y4mTyRNfFk2vNoMBDOFANjaEyhsXdi+F2Z+Oz8mNfGex4PB56Oe7JGDrWQQ2LWyhgqc0uk0DjkkUPFVW9kDeqnkCVr20RET/qzfhsZ6d6yxKp9QWBX085F1/Y6Yuo6hzJYFqzCLmWHFZTTGAqrP6D6c5pEOIjRlhrRzW9Nn3MjhUEbS0sUgp1XGXmWk9FURNiEBZXAkZFn1TPXKFzIzCTZXCIwseuFgc6nXGguuGE90kbgkjPF9y/D9kkA/IhNMEKytMAsyvSiMtwX4n0hLGbYptNAGwJtCJbFpQChr7aVUNTLj82ALpvBqQ9hpUDU1EufwnIVqZOQNwZmaEmpOy/FBjHkYu/hAVQhZF8l9gm0+e/PUX09sIl6e84m7pag7Nqp5LfWBBXZNGRbGIaKiFKKlbgutjNvX9xwOSw8z1v2eeBmnqjVoNMxwmZcuN6Y7iAohzy6JU1bV7P3s+kdBgwh2ppNeCsQRo2YfEKU2vmSZQ1ya5nSXzsJFhjPDQf2tIE1dZKKiX4fZZUY01EoW0fMJtzWyLJKKXJGRBd0AUszT0OrZ99th7hnIgazhNVdQvT0TsEDavI82CI30RG4oSrjnTDe6urUcf5Za3L9IffvWvb9n9x6rtJG4farAvm1Rn4jE4bGMFYeX+65mmYejYfVZPbYLLPrZ1qbu3toYM6Jm3lDCI0pFROmDnUFhuz9ftkNC29ub/nai/eZW2JfR76wXHGfR+7yuGaM5wjQfsQpWgm0T7qtB0YsI7svG6omf7fz8GrifhWnblyxcGwjN+V8HEz/dHbbpWNN3C4bI/6vI2/fjTzvAdB7fRb8zoO0bcX7dvXlFN1q6L5UUy8PqyvqFLZpIYW2AnCMW+l/6aVIA8JUK1e6H+EQzCKpkWgVjmrKM4tbHRm3cqC6c8PQGsqRopFRCo/igYswcxUOTOKUDypJCkEbtzpxsLyPspKU+/koW0xL9Mu5fRIAP2oLtuLPO8sC5qtAi4k4CsOtEHJDSjNkXTW4e0uBlsIaROok9jdpS8gVyRVtDVq08qJEU2YpgAjxHrQJqQZ7EJzbJiOQPYOIVipbg1wHrATnZZ/dZ6oPS56AK4JYtIxjM+J7cIWudUkKkUqYYRATwE7DwpQKNQtfuLvkWapcjjNXw5EpLuzLBA1zbdDI/WwIvDFUJgcTdL1CRdmOmaaZpVgvp4oQgrlr1+6t5go56pmsgt21jhiVXkaMastl78URTB+1n3soft7uVC6C6aWqud6rKvEgHojVBK8jEALNM/WQ1yX5A1+28+/n05b6QkW7OIG4dmrTNTPvQBsNesoAm1lcRTXaQtlCTTDuDQzTzXJ/LYtGKnYsbVvNP1BhmAP5deCiccNEK7DkwLJJ7NLCNi48GvZsw8L7ccuURu7mibkk574Z/621QI6VIRpyUsQm946cfD5v+cX8Kd6Y9kwp8/bmOc/CjilM3OWJpUYPHh11atWC2gzlGIKF4dgzd20csy28WlO2yVRhTKWkcpkac02oKs/nCcGAaLtkArnNuaVjn7xVYYA5WEm0EE9IztMIAqxWSSJ6em59EyewGkX+YXDsC0ABglQ/drNDam1gOxQzGO7o6d5zRx1fZZWV6v0BaVaKvNGJbShEKiOZIBEJjUWT9d6TOtI1clMm7strvDbdm1GuCjUKWQNXYWbUTBZhF6wneSUzW13Y67gS4QUl0UzxR9S9Dr982ycB8CO2lUIahPmRMt4H2gJDLg6nV6c0YP09B7cEBYoScyXMBTkW85MLljFq1/lMwfpvUzR9zzFQt0LZmEu36XJiEHbHy/RSGTzs5ZwrrfVtDXxr9mf/aVGpE3DRYFfY7BZCatRipcuyRKh2bNurI9cXRy6GeVWef33as0lGkH2xbLnJm3XFLFF5fHHgejhyqKP1VfKwQr/HWGmhuXivfY1JCeJouxrIJRprwGXQrNzYMzz/ueGC0nIajGZlyh4Uexm0DRgKs6M9qiJzMB5kwTh47n7BpOZm0VfnqhCF8DwR2sNJ7VcLQKH3DeVUivRfmHdgvz6+oPGbzkAwGaiQFiEelfH+RIf4cnRLglrrNY+R49dV8luZNFZitL7uxbRwMS5cjiZqPsTqWqDC5WC6oZ9r1xziaAsu7/+CuafXnuWrTeKlBeYSuJ4Wtinz2mbPINUFmyf7Xiay8wCDGOW7tVMQtNqzPSy2rrCSXozKo3GxTDVlBhdbva8jeTF1mNyMDrCdjoyx8dbmlqt0RFV4UXY8z1sWHZhb5FhHDnVwv8Be8ofzK7XSfxzR2YP12g7m/LucBT958FsRA/WMKXNxxk+MYqjYMZhXe/GsTTGkp4FksgWf4LQJ5/EFXxwQbPGHA4sqRsuIotRgllOZxE3ZEpybmTXxWrhnGxYXCwjMOjC5K0UCgmRmPY/2ykjlImRudfoEBPNx3YJnH31yLROkqORdQorTIJqunL+QQYtFIS0VqqK5OIik1xgBxEqfozjyUlh2gk72GcbxsxKo9sDVG+DyUpbxYQfvfalOb1BHAyJQLo3AnqZCHPrDo8RhQSSBNvP82iz2IFY1jcFYuB4Wlhp4kS/pSqDbuKAIKVSCYk7XeWAbC1fJYOL7bMCBSvTJzsSJo2sIdhds1ehGCZb2SRBQM/fEneulWZa8ZlDNSokU67upqvsRqrk2iCKpBzTj67VoRHC70IYs0YBl3EtYvQ1pEO/t/3WohByQLyIEWeXRFz1n16TPZysgsBsO++9F/TiznVcTSBVqtGPpVAU4n07OKgIv/e5/1VYSHK+gPqmEobCdGwyNYTDT1E0q7MLMRGWUhejKIpPkVY7r9c0dm5j5vF5S25ZWu2xYIKBm71M6p87QjWMsvoC64iLNRpPXhqIMMTtwxM5Y9TxYnF4r9ZQFitpXUeFQbFAvpyOIkkIhiXnyvXfc2f3YlKSZuSYugkNS1LROI5GmiRgqF9KIVKNUYL59J0m0cyEIMFrNKdh9cDuBQlQ759gALDFUNrGu+pxRilsTFYKXWEsTD1+mx6JO42lNiLES1cqgycuhXXot0BjEjKpbmVyWTji2wRaN0hA1pOw9iU1ICBNVn/D28JytzM6pFHLb8VgOjBSzWMIWuIgQtBED7Fti39InIJiP69a6watYSaUl5fA0MA1KaMm00JcG7k6wyqUBEgOiDYkRyRWWYty/GNcKRcgGdGlJiEWoQ+99YeXMoKtNjoJN/h0hxoP59PSCHfGaHUo7TbZ1srfEg/UalgEGbWZBGE2XMIVCisocYVkGVAP3qRESDLKwtIEhVB6nI8ea2JeBYzWTzlGDrf6DiVIWNRX6jZez5pJYVIkSzAutCkhHxxkQYErFYOsBjgzkogZcASvm5PAAGS7nKwIXepYqaPW+CxE2DY3VHSqsvMkckWP0IBrMsiixgmnWLUC5asT7QNh33cMzEvuHbNL/1d6D6hdMT9me759+bcHoL57gCpbV550puYSqa48XHk719IU7fs1fviX+B7c1SS3K9hnMGpknIW8t8wstUGKiYioiGzHYfxSjMZg4hPJoODC7SkO4vGM3VJ7tt86fc/3PaqonCLQm3Lt10vXGBLePdSCFuGYfjUYbCtSBUoX4AO15tqoA9/ATcjO1FMmCDEpSeJYveJSO7OLCOFSmYFnSi2XLvk58Yb5GgjCFwuNhzxvjLWN2RxAV9tUk2qbUiKEwV7u/uwtF8x5g57jG0Mn+dlfrK6+Sh8f1V0a/EIVZjdw+OinW2tFCiKY3msS0YEsDNHoPzuecNiBBSD0gIUzBtE5dsoOEcp1mjs0I8tuYSdLYl4GMlXjv2xYWwy0Egc/mxzxN91zLnkijKbwvOy5k4UIXRqkkD/tZAnd1sHtJh08ywI/rVjecMq9oBOPxzuSg0r66nqSYcPRZ8KFiiM9cnSsopgCTovUIJ3PjzrtIvgwcHwvzEyiXGAx/bOi2z3LiUl/mLiCdK1Zsog/5pW6QnI49X+gJ+JE9eGqjXSpsG5tHMxKUJUeWbMr9rfSw2hinwjhl0uBcqLxhjMXsaZqVsWJQNimziZlHw4FNLFjS2EucphG5VHtwSjOhZBEYUmenO9G3CUtNVAcjNDVSvdZgGZ9LrVFwnp/TrHvJs/fVEiY3tqsrnQMMxaolGGAmB8sMXdpNcoDOlROcuA4UIR6EuIQ18OnD0POhWw+CHfmnorTNWSm2iLsEqNs8gaiuvNA22UpJFFoBzabw0hIPA2Gw692S8RjHW4izGpqY/7lgqADJKhPPf1ODNwtPXr9jclujKZpqyvVg4JfHac9FNL7eoQ0UNVf03KIjFA2QocAwVAoBLSZGrQi5WKVExPQ1d2NGidwtJq7dTU2qBubS7ycxdRSxoAx45hcoLbKUcAKfiC2LQmio36NTsCxHBUM8LltezFtKizyaDlwNC1fDkULkWblkUVdzCXA9zlzrzG2ZVkBM0ZHj6vd4VvVZwTDiLB55UDLV3hv0KaO/FkRNYcdNd8dgfL9dWlz1pWeJQnIEaFNxoJuTQXy/NkbWrjD1GBeU8BVUQBklc68TlejOGBb8RZT7gmWMRG7rlkoi68Brwy13beOu8dWXno2FRGthvW7n21ETex0/yQA/rltNShuUMItTE9xvLwo1DQz3jbQvhPxSQ1tAUzQQzVKt7GJEH6Q1z3gi8WCpXsiBuASWIyyPrIzXGugG87Bz9wUNgi5CCC6q6xNJOFN26b0moZle6GRlUE2myiJNCDNoCRznLWFXSZuyTsoS/CFtkLOZfrYpk2IjpUptA3NJjDEzBOc1aWOpgRs2zK1wEa0UEvwhy60SUiO3RCKwaKI2cSkqw7cFUSQII0qRiIPGbUUfIrVYsZQuP9al0M5md+3uEE5F0NsIo2V8lv0BoSGDjR05GLimdbLHacHA0ver1I156oU5EDrR64vcOgpTi/0sCoyyOsybrJtdm16GlZ7NNSUkcYk6qIPLl2W7zppYMz8jzZu6S94ZfSceleFoC6b/0elF7DCIqjz9/yp6C/PtlvZmoF0IcaNEKneM5tpQA4+GxEWcTTVEKikEFknEVpFk3nijZJ7HHfdh5FYmlprMxUF6oLCe0/PDxCZVxpSJ6jxPV1OZYiOGuPLsmlppPDriMURDLwex0mpr/ZmJ3B4n5lQZQmKukcthYaoWKK/TgTEU5jpwLJHbZWKpT3i62bOLC0MoRrL3HlmRwC7Oxsmjej+8cJ9HA/ucpfwWAy0YWVCwZdUaKLUvCW0x1O/L0gQcXKMRf34mK4cGU7UB4VAHK5XSzJJJnbDvwfbQjLayhMAmVIZgfUSbUawdcdTBrlvcGwrUuX3bkBmGyr6YbFrWyL4mct1Z2yMeua0jb6ZbduGIBiPMJ6kk7ShVVhm8RuD4iRTax3fTJFZ+8gkvHYV0UMabSjoo8Vgt8JzbI2mvd6mV94IiS9foEhgSOkXqGJlfj8xXwWyNtpAvlfqkoFeFcWtmsbUGWokmND0bulRqIDTLBldaRC+hVagbMXWYt4+ESe1v7xMcvA8ZBJ0aDO7jNg/9jP081LyAQyONlZSMo9TUpJ1AmMuAGYEuDEMzZNgwm6npukq3B8BEkRpKpWogaUM1mnqGfaAThiGI9WWWYplgLpFaoxHkq8Ncm7ieJ2dyZ77iRl3HVB34AhAMZauspPlQjN5A4cwM1xVcbKncE+HVRPbcNPdL2cTLXy1Yhs+oLlItaBbLVvHPcrJ2V/dpW/s5vhOM2A+ULat2a6+Y151nhq1rfFowKCjDQR/0Dr+0Y7d/likQvm5h+D/u+Mrrey7TQvLJdwqZq7iwCdmDmxmyJmmg5usY1fpnjcii9l0EB1ZFF4E+gT+CNIZU2QymL+l0S8vsmull1tYtdpQpmSHtKZEwH7wgC8+PW0ozGg9q6NDNoGsGWHNkrgNv7W6ZpPCZ/SP2ZQSU17d7nk73vLW5MRK4Wga0aODQTCc0USnB9p3V9EGtb9nRoP287Oeu/2kDvNYJztfP69anlhhctiwWpmTj3nv35h9oDezgvcYqvVzf9+F6p2Ll0kpkVg+katqhJ4mGnr2ySjtaT9f4e0NUqktBNj8HEeUizgQJ3LQdl3FmFHecIJAJq/OfqnEO75rpv35SAv24boP1ZMquy2vaan3ZmYwUSQwZWNvK+wMrN9AcjKGKDtHvQkW1OQKsEQ5CEpv06mScL2ozw9Y5mpM3GJO1+uer0EKD5EauJga4gmPqttIuG2FT0LtIuRezRhorbDNaA22fTIqrWslMIm4+J3S3hdYUCUotgRoatUYnc9s5TqlykWaux5kpLOQaOEii/f/Z+7dY27a0rhv+Pa213vsYYx7WWvtYuygOJfrxKq8CWkI+yKeiGPXOG/VCE+KF8cYQKWMiXni6gJgYrcQYCRKMeGWiMTExGhVfLzQE1Hz6hbyCvnjCgqpde++11jyM0Xtvh+e7eJ7Wx1y7NpvaUFBF3B1mrbnnHHMcem+9Paf/Iaoj0djaIIOYuV3TwRzuqwEdmluuaM961Wc0ClPKtAokV6ep9iDdjGQxsjiecPRKSzCD4KQQXTkGzshRcHUc/9t+8zWfxfQdvycxnTohVklRXU2GXzgQ9kJRg8/9vBJV1EAFu4qMCk1onlhot5/q4CsV9BRZHzmQaYHollH9+dsAXVNUA5TR84SgDMX+O1pn6hdUkXmvz9AixFgIqTC9BUKAx40hFp7Ee3Nzj3WDtgtKVrv6iWJAGBpIogU3VE1wLIlDWlhyJAVxeoyLPmBCBMWBMmGr/Px9qXU5+lGrcGqRFAyskcQq57UF9mm112wG0GpNOK3J7HyiEoOwIvyP8pggjcNQ2MeV0gKnkjiGyFtc8GQ0/c3aAnOzykiB3NKW+06hUIJV+EtLLB7gWy/rvMe+dRxeONN2v4dO18BapTFUojQOyRxIRF1hxpGfqoIBg3A70jP70pZ0eNB+9X0Ce3CTaIuiBXZOhxARRM0aKYm1sk86klWINEbJxFioIW4i4bXBm+slu1h4bch8Ll9yDIPLrTWayqZbWr36AwjUD1ugX65HC2qVRAR2hta0DT4Sm1g77GQXrwPQRE11wgoZcS3GihZFU0CCt9GKzXVqtcpnOAoSAusEbaeEC4OSa1+8TW1+FVxrswDJqoXQFf/VtCiJJqUm15WYKm1N1DnCGgljIz5a0RJpc9wqIrObx4KHC01Xn8eUqoxDcYCBt2GyKUsMSbkYVh4NCykU4ouJrQVBLwklFhcSBhhYm+UF3csMgRSUtVjbKA2OqG0VGYWanVRXPECptbQkeQLgPLpeFErATIFrMDK6BjZtUJ/BmDTaGdSizf5ObScCPPgloQXjg2rVdwFN5PPmg2dHt7MmKTWircLUtsAeEoTREihtNoPV6kLI0T5/S4rcRFqOJvfGiyCc0PzydQ1TBZ2MJaIC470BaOw1ePDOvrAjLVAlUX9mz+n/paTdzCHY/HclsQuVi2huAUHU3c17BLdXGamEaPJ0ltQJL++O5s/XBsoputSZVx4aKGL32BAhBLteuLyXYjOuTfWFrvVpFIOCAV86uX4/l2kbYAABAABJREFUONBjFVSiE86Ni9u0EUKgVUv68jJs77xRuJEDYzQQzlVYGUOlamRtA6dqs02z+rElMwZrmbdqF36toNWsyLrx7ruvQJdHC9KJ7pZIN1Wa62/OFS7jyi4Vd3d4mL+5io6KtfnBZ39QtZmN2QvTYLtGSvcvTCxNmIJfq2DUiUjjpXhkbSs3dcdRJ2qzqq07UFQ1zOno88bPlWsex5MhTYGglbbp/b54DHxoiPtle0i09tOWvLmhrBRI945R94m1NPX5m4MeekVYrK+u+2RZbRBachNcesA03c9yUKNFzKYsn0eD57MacENmE1OO2YxMxUWu+z21vKK0i0p8vKBFqDnAHI1YfL1s8mPLyRQ0CMoL+5RgAbGTZdVapMtq85kQlBQrUyr8ny/9HC/tjjwaTjbnsLpga+XYREHMQ0whV2HRyG0ZN2JtboFSI6ds7c4tuG5f1qZal2QOEyWwpbCTbu1mdTskxTeEnSKpIanS1miRwCkUdtLZ3BhMKEC2f7fM2cn3Kta21OhJSwRZ+9N4AHbuXg9+Rj/pPWn/WQIdHNzk1BSJbdMttcNBGqkRR1Mu1wZ6N6BLsK7Dg1bvpihTzTBZKlT3EKSZgW26h+FWz4o3H/AeUEwNqT1WXv3/fIaLl09cjTOTWJX02nDLZVy4iItxO7212aH+WS2wdfWVpSXu6sSbyyX3ZeRURk4lPQgO3kHBqpDdWEyyq8oWHDp3rZu5ms6ooTtV1efPSsI8+U55YMmJtbyHUku1luEgjWnMlBocncnWXgZr59vMa0SBYx15lvceaIy431S4y+YvuLhdU6f4xGhGQ90RYorV9ER93fcGqFkxuZURwn0eiLEYyGycuRxWLuNCDIYTyGrUoi3Z8io5yPm2tvaxPlCY8bmj72zBK+zRKRVJCtGDWfGZ/dwSKsJAtRxUE0uLDFLZS+HUEvdt4r6NRKksNXKYZvYhU4lba/YsDQcjhSrhwwrwy/XQwVCELZmEVTmAJvPga2Nkem6mtXExT7WHVYEFuAZTMvDJUpAYjJvrJUFUQAOhVCQHyqWwnqBeBuoEOkaD7Ce1r12DEIwTJmIya701ijLdKGUJ1GUC5/o1sQ1ivR8ISQlDZRgzTEJZbba4tQmtf2IfojpZV9XblwGiwdprCfynp6/xyv6eNw63vDzducfbuTVozmImA2UAFyVgWeN9HTkVIw73ds1aE1IhlweZssO+h6HSolJEPdipE+P9xWLv6/is5SRoMkeNMDSIxYQHSjDgiwcns1fyLVEdJKTYc6/eGg72vSacsG7tTHGD2v4e2ohTMHBPQmtZvhuYw020+evIZswr7nQhHYiE0oqcvRSfFNg1ypQId0o8BifK63ku2VVk1GaBBCgXHownGG4hrc4F/QCHAGkGed549n+9yvI1R/LHb7h6+d54rAhXbeG6zVzElYFiiQ9sSdEgRphWrIV2EVc+Oj3nWTxwG0ye6y5P3MfKso6u6gKlRZ7d7diNhTFVT4r6/WP/OlbIAmyz6NgUWoUmtuHuUjGKT2wsnmz1gNPbd+TATTXATQo2q1YVU3ZxSbDjOFgASgZ4eWk4GgWimSxaQDlEU0ExaTKTSqsucdYthkCZq7VTd6FQmhPXm4Fq5jqYRVFQroZ1m6XfZhPqzoNwmbKBX0KjqXP5tovWuwQv1nxRcEpG3zHcUNfbt62N7EIxJ/hQNqHtgHIIjUwiNAPYZJqBmzSxaPJqb2VVEyZYdOC/La/wpB55Jd1yEVeiNH8fjaSW4N3W3QdbkF/k48MA+D6HXFR4y6qkuhfiiU3HMnaD2a73uJHmfUfs88CmkCuMCY3u5NA1QPeRsheWJ4F8IeS9BVgqxCXCAtRIT5pCOW+yfbOz96bMr1TSo0w6ZHRNrqIStypBBid7aySvEVQZpkrcm5yTqnmd1Ryt2sI25G5kiygxKlOqvH59w0f2d7wy3XJwI8wpFkPeobStDjTAwtISz9uepUWe5YMbmgZqi+QmzHVkLZF5TdQa3WjWkKhaxMAv1c6vBCXsqrULF68KHahCz2o31Reh5bi1S1Frb3YDXfACvgdu/77zOTe/RxfA3gItdr1lhl4mBAfTbCCchBnoJmCVzaCXwZOZaEILNi8OqJ9fHBk6DqbXWFugnhL5OJDuIvEO4iovWDttGqGBzf+vDRjIR5Xp1hCh/XEf6B7APsu8i7z865/z6te/yZP9iX1YjQAfKjtvfc6amHXw6+BzSBXWNmzzsNm/P5aRuQ7c58HQljkyLxOlBQts27AyODleGVLbDGl7m9TErWVzhReMZ2fu7YHa4D4PZKdMfP4ZsHZyUxhD6zWRz/RsDRmlJzLXiTEqz/JAU0yIGjGuazJk6KmYKsz9OhgXULfmOlGUXWxG8A92lxgC+nwN29YKFdP49JnqECr7mLkarKoaxKTPigbuyg4lbICbFz/dw6r/XIH1xNOAQhbURk9GLIgblUE8aGZr8hLFpNiiNiPISzEELqb12nsoUZTLmHmUTlzFhUNYX1CpKginNvKsXnzAFfnFPT4MgO9zpLHBdYabEbLB0KX5gFq8EtFAOzZidn3Htm3D59ngaAHH1BQM3FLGQBuUMhkhPmQlitAm2WLoC5MCu5+3Vp+CSXglm+ntq1KOwrIOyGQk5Io6BwK3ETJwyLSzBT4ENfKrYNqZImRRSjbuHfQ30HiyP7IfCk/Ge7Qpyxq4kREGJaVi4BWJjCEzit2YBsGOZLWbo1WYZHVVs2RVSksMsZBzIIWKVp8J1mjITXCAzrnKa4sHWG8jmvEn9vl8DzD5NA9am3GtmDlx5qxl/SBfCR2C76m0KK7nKQZWGdQCoYAGq9Jltc2rJXuSXgGSXGMU53WKWrCu0iODJUPBWu0hKrXaFY8+H1yWZNc+C2nIyF5pJSASkAUHYOmWELXBW7EiNiMOSsiwHowcHRcz1YUvPBA2bN3v00KaK/mn9ywfqexezrZeVKjVTWClbptcdbmv1VUYinesPXIxhsx9HgClOShpHDJSLDHq1V4QSLF4i9rbdaHZuvVLFfxFu41Q1xcVESfAN0IwbdVe2Z0P2U7GmiMyGNjmHGitGl2LqZ+sdW+ehmqPqyobv7U2m4vWiotBAL2tDxQV7teBpQR2qRLFqk3U9owYbKyimNoKahXnLpqS5iTZ5s/OecrN2rWTLLbONLn+jicHQDeSDj1j8gDYaUbdr1rF3p8QuK8DO8GVZswYOElBtNLEIGCrJvu9VooEo0qIVcHVb6yRlWNJqF5yijO7YNZZ5gQRObWBd8qHAfDL9gihIoeKyoLeD8hii1yqmC7idSCW5pWhBbs+05Fqd6+mcHaO8LRW1OStVhE0RvKVVX9d9xMwsrsLH9PbWw8OxTbnhpCPI/H1heGlhahCrcGrvM6CP4fS1oScE2nXGHeZnQv8LsVI+rk2ZhlYc0cm2t/f5olprIxT5fW96SL2TS+GxigNY/WZDdJOMk1iz2c5BqUSuS0HTjVtHyKGZhYtQ7UZIMH0HNXy1A29KYLEiow2N2tOardNVTZgi6igpSG7tq1u6d6GHUwUgs9VAfy6ITwYpdDnJD0LCa5AoxfVqrhYYY3W7uxSPcLGzZMcIDV0V5HBnzO5aWq29q7zPtBmQgAhKSEZRURbYxyLuaIPoEtCaiSpeT3Gfm2CzZ+lwJiN91miIqN9rjq5nuiqxAeO71/oIZi34Bp3PHuu7D52Yv/KwmFY2IWCcTXVveDOHQeD2lsQzJihbCbaTLBFCsnmYE6WX8rgup44WZ0NDbqWgd1YCNHRph6crPUYkZLIvg76DbbNlMTQpbWGB8HvYXOQB0AaYcmJIMUoHlHd884cLEqNRFFKUweoBHK1WiqKuVmsLbLUuFV/D1+rn/faEnMJpGCi8f3nFqLOV6dqdPWbxhRXKsJlauxjNsARyqqRuU1G86A3NuTBLW8jkKL9TmxbwiCoV3TejXjYucGFC6hEdJvn9xnJPqxEHTi10YTf1FVwmlJ1IOvA2/WKj43v8CTd2/sgUPzred1zU/fMdfwQBPPleqSgpFQpe2BaTSXlPtGWwCDBVFgytMHMPqU40Tz75qlKWFwyKQkkkz3LF4H1Srj9mND2ajY8yTasdHTLo5NVHtp6Q+m8SFQgX4JeF/SNmf1uZbcrnLK1KfJ65lP5XwAw7DK73crFkJ2DZzd3rmIyZSWSs3MFpRGSMMTKV730lI/un/P1Vz9DkIBI5dSmrU2YW2LWkYKZbo5SaHpB1sA764Hnec/P3D7ZFGG6LuJarN26LMmy+WbwS20WHARAms1Tpdn+VlwVxpVwtCNCG9biFQes9OooesWexX7W/y0Yt8+GVZuzBhNoVNpoFXsoD1BCRQg3A432QCkG2tCM3+fUkrgYt685D1GizWNpgXKfLNC28/sgddBOoxYhBtjtF3JJLEug3UdkNqeQMEM49q6BtV4DPhbd21OiVu2xKMMC6WSJVF8TH2S7UWC5BHm58FWf+BkePz7yWO5QDZxqYhcLicqjcELFWt636u3usvcWZXBH9cDaDAB1KpFny55jHllXU/3RBy/6kF57tZu52s3sQzEQV0uszZRgcjXj3FIffCrf8MG8+cpD0fQX7qXzz7qOaAhmuDtiyOTsvEzo6jMJkcYQIVFZWmSt0Sfeg8276ZWXzSi8H/TCK5sTxmjVqZgDRg9Lm3dmiCSt1rpV5aXhjleGO37N8DliMMm327bn2Cae1ksGGXlWdpSWKP56VgnarDQ6AT9J5VE8WsLWMCCKp6ria0kJ1CpE6WIV+Gew81TV5N+sfSwsniT0lrBg4KVPL094XvekLtohbInBfR3P5+pDEMyX39G8LaERmpjdil4WdAqsY6DuA/Ug7N8KjM/VwAIFNJrBKiK0fTIIenYikgrp3rL2UBrzK4H5caAeTAC7HAxQE6PArA52eNfiECWdDBDS8o7l5Uh5lBkPRj4Ol428JvI2z7O/L2viVIU6BfZTYUrZqrfYW03KEpRSo80Qsdngp58+4riM3OaJr716i1fHG67CTJHIoolBK0Eb4vqHxzZtM4brtBgo4JHy1umCp/OetQ1bu0ikMUlhzQmpBv7o8zu7g4Mj23ophsubiVE2RCzt9VYlDZiDBaTmnEsHmvSyQrKdD8X/Dj9FAqwQgj2njkobm80Xe0C2CZGbA+PWTJawqLdJazSSvczBaSbW/g2jMlystJJoq7eZPTi3ltDarAKkcXu7Z5oKh11mjUoZBkqM6F20ZOlo4BQWa8vH4v6GGUqBNqpxWKMF9DRbe7RbKfWP/AsdAky30KrwX//Fx3nya59z/2v3vPrkOZfjTG7RgFES2IfVPPT0xCgjkcax7TgyWFKDMkg1cE9SAjO7WLmVibnYnE4fBIq+Md4uO5aSuNrNXAwmVt2lzxZRVp+T1wco4n7EYNt2bd194sXq792ftrdf71WYhkoKBRWbJXbQyDFPjK1uiM0hVgPXuDJMEF5Ysw9W2+e9ntExrK1ogt3n91gb3LfRZ+WRVRN3dcd9nfiK8RkvxTuTnlOrCJ+3C3Yhc1t3Zurbkps3W+DK6pVcCzzVSy7TbIhTyvbedbsRcFCboUED5/mkaiAAI824kAKjKFXaJk1nc1SlErire8ZQSWKLrzjQpxG4jqcvYBX+8h0fBsD3OVoLpOSsKzdyravJg8U1ELIw3pp5acw+i6m2GYnPoEJVpDQzw03BbI+uIst14P6jwvrI3B8EmyeNdyZVZsTl7hzebx+lDUKZoL6R4dXM48sTQ6oY1sZ0D9d1NNULTNEFGiEqITbGoTANhSkVVM1yZi4GPilV3E7G/m4aMle7E197/TZfsX/Gk3QyA00VZiZKE5Y2kDWZM7gatSGrtbzmMvB82fPOac9pHa1dtFEcQDsJ3q2OTDigt678C7NY6hQOxDZjJdg8zKsuO1dWdYsEdG2GBO0SY5jwtRR7LAXnT3YpOau26RSGZO1UmUGi0R+2GJyNz2Z0F5Pn0lHsdZISZrv2ugemSjhkYlIQExZQFahhU30x8qRd4VZM4kWSsiwmB6NLQO8T47NAvDN3+JCt0xDLGdnZklL2YgIN2PsIGYa7M7i3n9oPdB9MsFwFHn39c3a/9oZhl5lloJbA4+HIRZy5jjNJDBjxrFzy2fWKZ/mCpSWimJbs0d3L+/uYy8DtPLGW6C7q53d3fq+G3jxMK0M05ZGny8Ed5M1V3GZ+Hkxal/3qz9W/k/cJfQ8eJ/jfB1OMSSYQb272bECTtUZqixzVql4BJ9HnjaLQeg3oJ7x7BKryAhKVLbAIOAm+U0mij1SG0LiImSfDiUdp3kJTEIidvCpwV3ec2uTUE1e6cckgsRkBhcYUM4NUPjo+ZR8yqPJmecRt2z1olbbt3NjPXIWnV4L2dgnqFDA1fmBASVJM9aeZKH6p8cF5FgLNuKNdsPZLdHwYAN/naM2se4ZUWbORqyQKcXR1kjVwesURb1EYb0yCSsA2WKcKMgQnaCvSmvG2VmX3diCsweZ/O7thmqdbkmxh4coo5miu8GRlCMouV/SpcsoT62UmpWqgAWAaV2IMFM+oh2CO282rqlqF+zpsEkmxW5d32yHfDB4NR6I23j4eyDVwMx15PJzYx5XBgdYRZVElSEU7eKEJc4mG25HK9XhCUE5r52L5Den+PZJcKb/5JtDn9U5+NlSgBfAozQjfo5BjooaErgEVMX8/FaQqUoO1QDuCM8H2xH024o0f9c3GaBEQVmt3anC9TjAPu2gBukVrd5uprQew7E2k1YAyuvPNWxvtFCiOTDVqQ0MnNUHuKkh9kAiIb4KueCPSjGcYC20fnXsqDHf2XqSd9WBpMN4qdVIL2E7ozwdHLecPrgQDlpilG+Wd//KY4/OJ+6++5fqVO66nE4MUcgsco9EXorsGDGQOYSYwGgK0ROeVGncNBaFxMcxEGczUtsYHQcLWSFVBauPmtGNOLgYdK4MUCIGstp2eW4wPM0Z1NCiYQS6bZuiLaUDPtroCC2azpIGmO6aUSaEyiFC8CuzGydYR6NIEjaUG64gImw1UpwcFtx8CQSMsJb2gE9oRmtKXqrcLgwjPV0PIPlt3JjuYZq7jkcu4mjKLk1pfSnekWrnTiXuVLfhWTzyqV4O3eUdpBnh5bbxllMIomevQOLbRRQLEtW7EW9LKIIXJwT+NSMHEJEwUzr4bpNi+I5VRTCmnn6mAuc5E7FxchOUXsSK/eMeHAfB9jpKtIlJtpFgJIZDFpLwUqKOYV5zoJkgtrW2cLAkCISCroeM0CGoSD7QUKRfCei1WPVQYVpvxxD6benAvhwz1ECgMhFdneHlhP1pW3JUxcoks2eYiqpiep7echqFyMa4PbipYS+S0DgY+afBwNhKCcqojH7t4xuuHW/Yxs3NDwblNLChCM9CKRnIbbCBfHwjllpFTHjjmgTkPNvPrBre9xQlbaTWO1eTXHFiAGhw+hI7MU2I0tRlVqFNhGQbm2wnVROfI46RwcXUZghiitO81yobWDPVMKehzsg3I8kAuro446la9csPcHKrhYXQwziOjiROEEzAIZVCGfSaMxXRdq1c7m66pq740WyvqtIgu76bBf1+t4xBnIc3eQlerUmNXplHQwRIvvI0req4Sz/n3F34I9nxpFeq98rxO5FppS6VIpGrkI7vnhAD7UHgre/W3HrgvI6pwkUzP8y6PRknwaiBI86rego1VD/0SOfcUodTEONjaqxqZSzy/P7XgpsiDKoPtWaoGdkNlcLBXqQZ0qRoerPl+Vs7fG1jV2qalBVuH6AYgMSMYuzY9aDdN7KO1Z1PQrb15rnktedknI5rvU+aUJ2YHhXmH/gWyeK8MY/QEWQI3Zc+sAzflwCCVIZyVYbJGR95azVtbdBjLFuK3WnhtiSjK03LBdZwJopzqQHE0WNr0RU2tpbraDJjFmVCco2jgtVGFRe05bL9YCQK5ZdbWE19LUoxCYy4yH4JgvlwPb3PECDbCCyYb5ost5kY6iVUMng2qGLvHIPFGgNcotDHSRqFMgfkloeyVvMN8yQqkY9+0sTafc7rqpCyvNNIhky5WXr44MQ6FGmQzbV1LNHDBGplS5pXLW5aaKNUy7xgrU8oGDFA2BZZWu8VPV9iw7w/DyqPdiSfTiX2y7FLUwAEtCEENVt80khWWGplbNGWPNnDMI0sxZN8pJ0qNmCuUwdF7lq3+sxjbWetRhCGZcvUQLOg1cKsk70NGWHKk5sB6HOw8TNWlxrwlqKaU0+/8F24x3+fE6Qi4ok7/ldRz9YSARPvMtbsviEmidf3NFjFFEVELOkdBd0rbVQ6XM8O+OEZHOa1hUwnSdpaBUSzYkr1Z5U4XUoWwQszCcAuSgaKbg4QUP48+ywyLfSEPPCH1XZ//Ax6CndN0I+x+Vnh+uee+RA4XC/K4sdSX+bnTI54tO26XHbka6CXGxjQYRebZsjdEaO3zNJic7mFeftU1Lq3iT6FRq4Gm8Osfh0oMlYBpehZHd7Ym5BrO2Y+3+yxptVaeNkukhqhE165d8uCt14fN0XMQbM2CdBN7/hS6x7oFqda86nQAS5SK0An7nWLQ6ekBofF4OG4oV5XEkFZyk60y61Xizt+70EEj9jq1CatGcg3MwVuZmkhSDFjmqjIW+PC19fCjmWwZNEuCW6CpcReH4N0gwUArqk6rCE77gKrKFBqjFvZh5p12xbGamH7VQCFZt6cmdrIySDFQl6wWAMXaqyLCTlYmKR+CYL5cj1aMv1ar3cwi1gIN0uCiUFPkNMK4i/BU0GDamJxM7aAFCJKQ3JClgEaSCPt3DAUKQrlU6gT1YACGOHslWb31tkJ4SyiPBjLCO1G4SAsXw7xVf2GA1GBBWUvirbtLrnZeISaTWprLYBDy2BiDQaEzgIaNKyQAYp5obbZN7MnuaFJOruYiamowRZurfCjiVVlAia70FWS0DBlhCYJmE92tG5ikZ7o+dwyNGOzc9qmDi9wY4CEYUTyXSC7m/xYEkEyZB2pWoxykQItueAqbC4I8bHs9HASFc+6/BUUwlGgnlXu7U+6gTUIbQCdMJzbYdetk9zZB2zdCE+JtZM47ynVmd7kwjpUYlWVJlNVvvU7y984sPUEI5wpWBzEA65WQTmwGuyEY/icWm0MGd7zonyW8+7P+Eg7BQDfhc4E4C6ePTdy/nvh/5oGXro88OdyzT4UQZp6eDpxyZF4SSxlYUmE/ZAsOQJZEqVhyFnSbR5uwslUICqSkxJjJ1agx98vElArjkBmTWeysYkkq0ryFGujN7VIj0a/uEA2AYd56Nq+zQJhYswPcXgiE1rIzBKkBk1RxsW3TyWyhObkeby9GS5KxFmBy3EDT/gjh2XpgnzKHlDnEzBgiSZS5DKw1oeq6n8CIjy8cHGNB0slG4hVqFXJThhBIbuRbWrR7dQOk9Layt4jVQEt49WodaZM9TG5QXdXNdUM5148KEDk28erfQCyHuPI875kZQa0zoAhP64GDZi7CbJWj2PQw0RjFjLPDF2uB/iKPDwPg+x0lUHMiTtWyPW+ZqBoYRpZAukuGvpsb6dRIJ9uIQsNoEcXQh+XRRDkElsvA8pJQLu0lpAjDrRIzUEBHm/fVHeQryNeN3csnrq5mPnr93HlIciaa10hpkbt58sE6XE4rQ1L2Q2Yug7WBxgoqzNkkqcxDzTaHGJu5UqDshswYG2Ms7FP2Tc16/hPWbmoKl7EwSeGuTRRN3NeJUx25rwNPl721PpfxwesYyvRiZz3/1m8+tQz+xVaUKc5En/l1cMNxHh2lp7QWDAxzSls7MayCrOe2Z9vrpvrywjVROZvPOj9K1DcIvx8FDAnaIETbUuskG7UhZAiOuhTTbttEyuMcIEJ+tTBcZnaHha39No+mtrO6ik0P0F6IeIcJqQbwkRXiIsSTbupDFij9vVUQF2F4dw79Qdudv9ARsIo3LoHpzUhrkVwCn22RuzyhCvf3E62YiEHcVYbJ1k9Z4wb+6McYK2OyExBD4dXBfCQF5WpYCNL49P0jbpcdd/O0rd+qpkuLt/5bY7NIss/tkB+1Ki4G9QDXvAupLo1mriZrMq3b7C36s6KKV4IqbpdpLcExmu1Q9mqrg2A6vaeq6c8WiQyh8Wgy8Fh0yoP5BVZUA3MFrQNrizTMy3BK5rVpUmR2rjZFGTXroyaKeuuxNmtnno8XA3ncaBbq+u5qcmTSXPLM/RPFEgTxiqwi1DpuFW5Xx9mFTEUpGrnRC+7rSFEzvn4YcPehsA8rV9Fs0jYajmdo0e2bvpTHhwHw/Y4mUIRqkEBCrFsiFJJxwcoTwKHAHWI+HL0VlgQJ0UAbrVKDKb6MN4F0Eta9L6qI5caJM+S+KKNWDksh3jWCBt4sl1xeLOwGy55wAe4ggctxZi4DpUbu5sGUK9bEfshMsbgxZxcUNomtIIYuaw1zsMCAGCouVaQDuQYOKbGPmbVFhmCGpk13RGlmhSOZi+iqGA0eDULURpLKXAdKsU0l+WulYNWbis3NOpdIXScRUXI1w9wgttlpg92wkkty2Lu3badKy800PlNAo7c+Kz3lhWSt21ZtA5DqVAaV8+xMHmx522ySzcS2qRCPZlBbBzvvdTRd0LBaIiOO3m2j0RDCs0DLA/enSDpk81d0FZGqgSbRSPnFznuvwBGcy6gQhZZAD6CzB/Ls6yZA2QGDEBcluTfkVgX+MhyiMNwraVbG57C8lVheSdy9nIj7xjhWFCXHQF2tJV1yYJoKKbm2pCc1TSEXoxuMUsjVrskYjeOmmnhtZ/PnQ1p4ejqQa2TJYaviNmlCH7w39RODtapbg5wDYTAhehSjpLjcWhDYpcwUIUfrluQSHazliU/riZq5w6gmYrCuxBAKATOdbX39VtObHaJZF92vAy0JQywkEYZQjQYkjSmsPBqNO3tXRtYaOZVExqhQY7BgGammMuOtUnNksGQu9JZ+Dz0PkKSb2ot2OyI2YeqGjUNUlBaU5JV3QDdX+n4z6HY7CXMbWCWyaGTwai5KJTQTOlCv6+aWQE1LdNdWplAYQteq6fzVL938Dz4MgO97aGVrT5FsyN13lw7kCNUQiKKClGoC2cdq8z/sXpQYyI8SdR85fkTI14AKcYZ0f+ZoASaPlqANwSxVXqs8eeXIqxd3HFJGMGHh4q3L5lnbfZmYc9o0EdccCGIV4Jnbcx6+mcqDoeIuppVdzFQLC3ZjRptFVB9cZw1EEqLCWgeCNMsE1YLRogaCua8Tt3nHKSfWamoYISiDmGLIxbgyxULzzHktpppRmmmR2kwFUvA2MuJkZkO1rjlu9IlWgg1Lu15oc2qDYJw8z3bNMaIjQuXczXkw9zsrCZ9PU/+demtUEGrnHrbOq/Pv1Z4j+HtoGcrLNsONOxclb9FscbJXf8Uqva1U61wF7e/H11Uz/c/wEMwiGCDDQS4koUQldsHr96gIv1hHwO4NWSC8Y0Lb82lkflmNsupBOO6UdiFINGdym60qTcSAKdHAYYPz6a7GhSlkGsFcBkJm0YGihVMZGVJzAE2kNt3MWqtTILqnIlhw68FAgiVY+2haoueG//lCp9CYUkVYjaifB+7nkdLO8kDbTHUDZnkFyllebbPE0oA2E1HfD4V9tEQUzsjODl6JVVlDdCsxcScHpWlkrRakdqmSyFykjGBcOgOgcW5xdgiRnsn43aIpPqgmvUHi1k2NwdWcumvEi+vGzlP/WR9bKIGiD0S3tQs2nc8DmPqToCaU/kDHtVek64dKMF++hyC2USWFTld5UMZrFiNOz0BpBLejCdnhw2IKMNUJyfnCiGbpFlBluGeTO2vJ9vI6KeXlSnul8NWvvc1hv7IbF5qoc3ASVWGpgft14G7eb3JMQ6yUptvNOOdIamcawUVaOIxmQAmm3nAIK7uhUDQyyUqUB1BwzvOYbtsiHsgCyo1OCDBXa4ctxXg/2flMKZpVykMqcG62Ee1iNSi4JOZazag0VrejsfnG6kgUVzCjqVWv29xOlLb021OMwzcokirERhzMfFaboGtE10DL0dqIXR7NvQotmGBtz8jZW/BBW5TsEmQRZO0LQR2xawGqF52a1F5jEUobnALhwJSKm+tumZQHvd6+xYO0UkUJa6AGNYNmXIA9nzPyOth76PPjdzeV+vai7/rZL6VFKvg5Wm0Np/+pTJ+DfC3kg82182UjhUoMhYh9vxtNhzbF5hV+5WpY2IeF6zSz8yphdpCLqlWMYyymGVoCZemyXFbpi7BptAKEJGhrpMHm9obKbN4O7SAMX8e+3mNQpyjAkCr7tLJLK2/dXli1rsZda1WonvCG5O3MqDRHIXeMZevrvQbu8sixJHdwt/cyhMplUrsPEKaQOUoiBQt8Q7CgNIiNAVKwAFZ8jYjfC9FLYLcD9TuhBzO/6tqhbv3njaCO7vQ2h+iDDFB6DWfHWdyeB/ufGCoVf+EXVlf/XhgpXIYTtVnA7ec4gImi6/AhCObL9dC+m2TwIRlb+aAgEXRSyiNLp44q7KMgWi24VTXLIgQ5NXgzEmpjfinQRqOBDXcQXNVD3TA0vJXILfDf5WVefuOGNy4Lj8aZKNVaQG0AKowBkYWbkylp1BI22kA/7MY1xOCxTFQKl+NiXCo10eqlWqu0m1tGh3z70OFBBYm3X6xlK3YnEoOh2JoYCqw6+bYhNB0Yguk39jV+X0cahX0qHMbC2BpzNiRrEOOC1RYInlVW7D2R7HO1ZgP7EJSwL9QY0VXOMmfVqSZaiYOVZzo2Wo7oqtQU0DkQFqMTgJPfMWDJuRr0N9wrmmyJimLrQXy2uK2X4EEhw3AXCBXWx3Uj0Wu3cIKNU0jjTNfAsvbtdCer/vJVI86CzNbCbgUQs8NSPJgG45JSXAatV5K8uDVt7/Vd//6SAiFAhrGZIEQ6CvUAaY3kx0JG4LASorKUZC1bMlOyFOtmnSjJ2ppxODFK5Sou1BhZWvQZlQWbt1PjuexYlnGz8VLFkgkPglWVEIVShJS8OvFqqLRgrUlv7yni94tVib0SQpTLMTM+vuX5acdxHR2sJW67ZaVuB2jthkwuaQPyoEJukSEKuQop2HNWCeQKSzVJt4uUuUgru1R5IjN368Sx2owfb1sGzzZCqJuuu/osvl+/8MIF9CrMW8QBPIvr6Www6UZcI9TPjbnBs93X/doGBwA1zpJp53mevPCaLx7KzMhnyhNeSncMnAwTgHCqiYrpmH5YAX6ZHiF5TqVixJ+e2jUDAkixTSguBoLZPYPhpAynZqDnKLRB0BSokyBRmG5hujVJtC6YXRPUSSh7OL0G7UlF3jjy1U+e8bHrZ4C1PJ6tB27XiZtl4riYhVBZ3A6dxrQ3lZfDtFJb4H4Z2A2Fi3Hla6/fYhfLdsNUFd5eLiktWpbuLYmtTYErttBvm7O6RodHVw+euQXTQ3Q/M9N4NpPQPqNpmIZnU5s7ZgkMKtsC3A2VnVZu1h1zNVpt1UAppiXZmv19h5jj4Jq2RAt4GRgbMlYeXZ8YBps3dsHiNds8orZggJPqcmEJ9NKjWHH0aAnIKhsaNywY7QFvcc68QFkR2IKmYiAmjdbGDqvAjb9OVJ/zgpwEHaxS5AF9bWuhRSxzr0LK5v+nAdpgQTBkSEfddD4RD74PBK97RdDAX1/c0QTSSd9TYP2XFAgryAz5SsnXUL5mJhwaMVaudguX08KjcUGB58uOtSaaCq/s73k0Lrw+PeeV4Y6X4y1P6yV3bcfSEpnE0gaez3vul4l1HtHsre+kEJQwNq+wz5SewX0ED9PqGp0+TwuOanY47dqiJ2yRhLJP67b+5poI0RLJB/rajoS2NekKX7QWqDX6Yxpjat6pwMTAm+lxhqBdB53cGrd5BwJ36+jgNmEMBlB5eXfkMi08Tvd4s4K7auflVEevzrrWZ2MXM2OoTJI3U9vVqQmiJk3WSfHif5PcDsne94uAF6uSe9vS7qlMZAMa+Uqz33/+6okoL6V7xtA4tWk7fw37HNY+/rAC/LI8ZGxslutdZdjTopaaXzQxMArC/BLUJJQhMd424twsS2/VlEVGocVgG1/wL3rbSglNGZ9hG/e64635ETd3O155dMuUClEKOwmQGrEpJx2YR6W4qPR8HMhLYF4iF7uVx7uToSib8F+fv8Qru3seTSf2MQORJ8M9cxuY60B2H7aobdMy7Ki2B9uynxg7FQFlDKYFEemQ9LDJPOUSHjwXWyMlt0BtwxZ8RyfYq8IuZoI04xGqcfxM7lMpBL8OnUyv4KbFBEFrIOXGfDdQp8owmqp/DJapL0siS6ORaENA5mib112AUSGq8feKVRCSBcm2WTS3NwrV7IFCr/a8OuRcgBBXoMFQoO4s6Ojk/PaoVq1NDjQobBJsGh9Ma/vzBqWO1fiXi71+U6iD0q5MUSQualUfXoU+qP765ZJilXOXWS2TI0irBfX3qhJ/cTcNDPc2c1pror7SaI/hyEguJmA9JXM4L95avFl3rDUyl0DdC7dhx9VwYi8zIZmFThwK8bKxjytPw4H708SSk9FrmtBWddCZnTMRqEUoBO7aaLSJaDJ+SRtRur+Yc/ioVJcOe75MrvHZeDTMBBpDzNzPE7kmsguWx2A8TgkWaCQ0BtRbt8JaElWqPxZCaJa0OQjnVCJL2TG4w8UYChGbdzcVV36ZqM1an4/TiV0svJTuWDVyCoPJnjWbBwaazUPFuiajGBBtYjU+owaanJ87Ex0MY7PxM3wF+1x9KtC3PRemmLRQ1BwjOhZCtiD54mKoKG/mS3Zic9Dg4hlLSy8Q/r9Ux4cB8H2OMBXzkwNPo3vLyoAOsro5abFNLy5KzMJ4bKTZEFrmIi5I8JaZqtkYRcvIW1A0WjVw/5qQX1HadWXYZ/b7zCvXd4zRYM7PTwdulonTaaSsiZa9OlVAxFRUmg2o71xF49XDHV95+ZTR3R/20fz6BOW27JjbsFV3AVBx9XiVB0vTqx98uYqdi64CUVUc/WUhTjqY0785y1tt27tl6grSlPs2edvTAmg3OG3NNARfUI/B+JmbO7hD3Q0VomQJXO0LLz26s8y7CUsZEBFkl9HTyAJI9vebFKbuIOEf0Cs4jW4c2rwCdKPbbf5m7PZtTqh6BqlIhuKzxNBMiUaCGN3F54ttUMrBnSQ6fsE/Za+cxakd8SSEjpgL9t6mZzDcGfDl/fLnrRr0DaoOXWuW96RP/GKOh6+hEU6PI+1jK+HlmZRgiJXDuDIlCxbdSb3WwGHITLGyT1aJvz49R4DPrVc8qwdu68Rcjay9aGLJI/M8+czUZr4S7cVDJz+KkpIyDoX9mDdAV1MTVJiiBaGldhm2QAzKGCqX0+L8PaNQXAwGwmmeeNm6tjkieFXnAaD5hTSUtSIxOGdPydWMfVMspl6jVhmu2ZVgPEmMToFIsXE1ZB4NM4/TiYuwsosrg1QCjWObOLaFuY1UV28ZpTBJ5sJNaA9hJvrzjpJRFWYdWHRgbgP3bSJr4rwKzr2eno49zKf62hwwonzuMnT6bvDMeWUkb+OuaoT5h4HS2q5fuhZo+IUf8uLx6U9/mj/yR/4IL7/8Mvv9nt/4G38j/+7f/buf9/H/6l/9K9t83vX1mc985oXH/Y2/8Tf4mq/5Gna7Hd/yLd/Cj//4j3/ec/3oj/4ov/N3/k4uLi64vr7mt/2238bp9MunJh6TEi89CAb/UjZUIerqH67H2IJQRmF+FFmuAmUUasSktBL2Fe1xAN2NskVYHtuPwqnBbSDfjKw58b+ePea/vfOYn33nmvv7Ac02DxEfAHQ7HzJotvbYbsr8H08+w9ddfYYn4z3HkrjNAwPFMjAV1mb9/8Hd3IfuAO3aoIYaq65u4X1fvzkC5pIxxcxlmtnFlX1cvV1iw/UolSjmkr0N2/vJ85ZqrpFjHliyQdtzNVh8bTazDNIYU2EcVlIshFB8RubXoeKGtWztvBAac0n83LNr3r478Py447QmTnPieDeg2aSpZCpWPaKwBuQU3KdPtuuqGOwdgRqVOtjXeqksLynLE2W9UMpo11eDBZeG3eRxxpCS2dqm8R7iHcjKmcKy2GwPD4z4WdICzCDZxNHt1Kk5hByV4altqh081fOgn+/wsZYBVo50wZTtqvxS83DFWUOTcvyIortMrJWwCKk1xpjBbYtys/VffW6nwLFE7taRC5m5yyPvlAOIrcWlCHMJ3Jx2nI7JqEQxE6KRO9UdNyxLag+6F3avDFKdCmAtvNoCd8vI2/c77hcjwucSmFfz6Xt22vHOfODpvPPvzd0kqDvG+7/Vk57qn8fMd9UBNtZuX9bAaR24WwZ7nRo4LqaQdMpmRXYW87agW6oRBUqDUu35s0b/WfCEM5CkcBVOvJTueCU95/X4lNeG57wSn3MpJyYcWk7jgiMXsvDR9Jxfk97k48ObfM3wJr9mfJPX0zOehBuuwj07Fqu4Mb3VgYzb3XoXyJSZck/4qNvCVV/3W3fGYTKiRmup71pkQuMgC91u6ktxfKAK8OnTp3zbt30b3/7t384/+Sf/hFdffZX/8l/+C0+ePPkF//anfuqnuL6+3v77tdde277/e3/v7/HJT36S7//+7+dbvuVb+NSnPsXv+T2/h5/6qZ/aHvejP/qj/N7f+3v5nu/5Hv76X//rpJT4j//xPxLCB47hH+BohLGil0o7JrclEkMOcq5CdPDNaLBNpiKIRgi9EvSMP8mDMgrAq8KsHD4jnF6DehkcfCPcPT2wv1yYDgtFjJtU1mTLLao7lj/Y+apQ54FF4af1VT7+8tt8zcVb7FJlVQOZtBbZh4VdaCSZESZqTRR5oE4v8sI8sKm+6NeGtUOaZ277VGhqc5WlDaxVtt/1urBtbWTZqBr2UrJVhn1A3rpxqboIdjAXcFUD+NQS/QaM23MqWEDUyAJMh3WjcNRm85wWunTW+e82YVGsmtSM/UwUBkCsqg6wzeFEHLG7h7pTwmo8PJsV2nXt7cVhtrhVdmyGu2mxcxyKUne2JnwPtc0g2GMtqCiMwYJpPWfO5QDjvWx0m61zxc9f0T183KZ4I3xBf/uFHKJWWV7+L7h/I7E8FpPRC43cIjHVDcyCNHaDspSBu3Vk5yCY/3T/Ub724i0+Nr1tgCpNPBkWVBIXu9U0ZrNQlkjL0dqd7rShzbsXsYFYR+GYB0TgajKSfazKWhOrRkIw8+jecrSkLDCmyqSFFAOZzgY01GdUNSqONtBIjaabV2vzBNAtuKIFAJsL2jrPNZCrKRp1RGZXiRGxboiBxdRVYQI3brsVg1lJpWjufkmMb2kDCIe2BENZTrEyUZxIbxd3ZUQozBSuY+Gae9YQODFyHU/ctD13dSIHMyue2+CgF7M9anRBbUuHkwiVRn1QPf58FWB1WkugV39q6wLlUTr96gHB/OW//Jf5yq/8Sv723/7b288+/vGPf0F/+9prr/H48eP3/N1f/at/lT/2x/4Yf/SP/lEAvv/7v59//I//MT/0Qz/En/kzfwaA7/7u7+a7vuu7tv8G+Lqv+7oP8vY/8KEaSK5UIbFQ1+BO4tHoC80QdyGbWkc6WjtqvFfC0swwt7c6E5wb5dCXS74UTi/D6Ssa5VqRJRBqRI+KjsrxZs/x+d787HbVdsoW4BiMQ7bNJRW5KFxfnvjEV/4PLoaVkULWxNoMiTmmbOonBGaN3JYdxaWjxlBRGpdpNrKqNrM3cmujXickMV+vwZEXd2Xirkw8Xyc6QuzRND/cV1HPWNcauVvGDWl3ct6i9gDbVVnkHPA62GW7Ji2SczId0+pKKlsbGM9QhXkemR86rTRvwfZIE3Rraat08ry1b7V68HOSfFqtBVonzCPwUE17LgBzNMm8VYirmeGmOycoF+v1SIahWfBEnfKSDNBCsMeKQpPmoA7MfLcI4T6QlrMaTKgC1bijPZBq1HNA4xcOgu+eEX6xjnwN968L6yuNdtUYrlfGsXAxrYyxkKIbIXtg6qoru8G4fzfLjq+6fspX7t62lmVTbuqOt/MFnzle8c7dBad5Ij8b7YMMza+5GCBGQIvSgkmBpakYPacqY61cxJVjNvulXCOtudRhMZiuOFVlyUIuZtycYvNqEtY1mewa6mAvaz2IqFF22HIpW8uCizgYx7U1ISWjYzRvkZ5HBHbHhGDdlYtxZYyV63Hh4kGHphG4b9MWli/DwnU48nK6Y3K1leZBKtKDX2IvmWs5chEygzSKtzejVgTYhcou3JuNWUs85YKbuiergXqSSxY1FRY1dana+TodH/rCHFC5jjM7KTa7f2FHsOPldMdlnL+kIJgPVD79o3/0j/jEJz7BH/gDf4DXXnuNb/qmb+Jv/a2/9QX97Td+4zfyxhtv8Lt/9+/m3/ybf7P9fF1X/v2///d8x3d8x/lNhcB3fMd38KM/+qMAvPnmm/zYj/0Yr732Gt/6rd/K66+/zm//7b+df/2v//XP+3rLsnBzc/PC1wc9ahWvOqrNF8aK7CvsMvWiUg6NfKWUPZSdUi7s3+US8kUgH0zDkaZI1m61fG47iVV/+88pl/8tcPHfImHprQMIc0BO2EZcBb2PsPoqmyo6OQAEuwllgXKf+Hf/7av4L597lc/NlyjmzWWD9EDWrloBhzCzDytTyEZVkMKpJI5lYNHoZPeVnayMYSViN1hWc8Fea2CSlcs089rujsu0EKXacL9aq6YrfgSM03Q1LSbnVjGLmVA3rdHgFhitz/UezAt7ayWExm63Mu4zw34lTgXS+TygoKvQckA7wKRXPV55bO3s1FBPcDQoGi3iSRM/z0BQylUjX3kLOEO4FcJiRHZ2BQ4FvayUi0a+bKyPYL1U1oPlKlIx0ruDTTt/Lp2w2d4J84CcTfiajFU0Q6NeVfKFkg9KObj6TIQ6wXppbfUWhDo6RaNXkrx7u/nlP4Y7q/4ufiYw/VygfXZkuRm5udtxt0wc14QpA5rg+uQuEXNOHBdzC/m/bz/CP/3sb+A/37/KfRn5qvEtvmr3Dl97+RYfu37KK1e3HF65J+6KdWSKzVd7S9wQIIJmIZ8Sy2ng/jjy9H7Pm7eXJKkcBuP4dfBJTBWJFW02X67F3NBrla09WpuQkrlKiK+zWoR1TSxrpDo4qbs5SM8yfF3HaF+1CDlbVVjbA0UXz2C0WQv0dpl4dtrxc3eXvDUfeHO54nPrFZ9bL5hb3PLoYxt5p1zys/kx75QDqye0ibatgZFMVXjaDrxdDzyrkyuwGPfxMsxcccRqv8JeVl5Od7yerJWapJC9CSpis8RRMuY7710ioHTcgM8DT23kro5AYyAzUNlJ5lE88tHhKYewsJdfRX6A//W//lf+5t/8m3zyk5/kz/7ZP8u//bf/lu/6ru9iHEe+8zu/8z3/5o033uD7v//7+cQnPsGyLPzgD/4gv+N3/A5+7Md+jN/8m38zb731FrVWXn/99Rf+7vXXX+cnf/Int9cF+At/4S/wV/7KX+Ebv/Eb+eEf/mF+1+/6XfzET/wEv+7X/brPe93v+77v4y/+xb/4QT7e5x3qrREUhqEY2rJhoBbsRgtuiRN8Q0v3GAJ0se3H4PDeNvXKT9RaFhqtfXp8I7A+tuAZaiTcY5swGN/nslEPVh1oFeQumqt5ZbPoaVE5XBeuHh35tY8/x2v7u63FosAYKkGVuTmQoJlwcJdW6scUC7uQjSAMVAIxQqRxGddNn1CxGeLzvOe+TDxfd5iMVWX0jLlo2AStq1eAx3w2xgUeAGPs6Er51mL2qaO3mu3xUIop8oTUOOxXojTu7vbkddjmqhviw8+1OSz0ClC9dWZmu7pa0DwP0xRJ9h4ImCPDYux7jUq7UMKhMu4zXey4FuMitvuEtEhYDbQi1WkK6tci+pqYQH1+R3Ty9K7BoZF2BS2RNgfCHIirkBZIJyHdu/KLI1A1WTAUX6ebLVfVzd7pVyK3FrygnoS6U9ZHwJUik7LfFXZjIQZDXjaFtaaNntKaBRhUWIeVi0crT8sVIQhLHnied/yvuyc8m/ecloH1fqQu0V40bCWHHcWvsaqpNyVrQ2oN6C6bB1/rwA22LoM2TElGxYFNFpRCMPSsBA9Oy9nYVaLPitW0RrvE18Oz0hM5VWiuHarNdTybgXYevlaX+DPZMnHCeWAXTf5QEU51x+qUh0kyk1MfTMUJkhitqanpeUas5Tg+aIkualt/JrLqwLENFJJXjm1LdJtEch2MPoH6iCd4ZXgG8phXYN0uRUDZh5VH8d6rzvrCZUoUDmFhJ+VXTwu0tcYnPvEJvvd7vxeAb/qmb+InfuIn+P7v//6fNwB+3dd93Qutym/91m/lp3/6p/lrf+2v8Xf/7t/9gl8X4I//8T++tUm/6Zu+iR/5kR/hh37oh/i+7/u+z/ub7/me7+GTn/zk9t83Nzd85Vd+5Rf2QbcXjtQSCbGxzqYrb1VcQ5PATikxEJu5jLfZbog6evHQPeiaNQfVN2bFwRKjMD9SwmKgBpksIHoadeaHrUI8JmQADc1aaWLcMgmwu5zZ71Y+dvWUFAuneeApO5cdM3uWudniNgGUZoRasZaK8GCjVHUJSkOUKTa/QM1BQrw6XerAXG0zSVJ5NJzc/Tl6ZovPDbrOp7AWU9M4DMV/3rPr+IJJ6WYXQ9+gei1jwschdKFsu6FPayKOBYmVkg01eu6/9iCoPqQCiXpumZZ+rvVBOw2kBON+ehZRx2rBMBqfKtRGW8TmTwEkNPN63FVahZoNUp9UDXiT6d0iAy92vl609VH31cxtM9QaEQ1QrQrUBDUa9L4lj+/ZAmnvKNSJjYjfW/IdKMV29n55j1BhvHEloSLMX2HE8XsZqA1SMscCAz0YGlpQWrVzpASWEPmZZ49453TgMKw8nk7MayS1ylgra41uciuGBhZrI2tSaGfXc+PuChTT5SxBKEsgTZXQgU1FtsCtPfj1bosAIViCggfZ1p/bWrnqHaJaAzUKIoEYeyejr2O7n1pzyoX0jo2cv+8dnD4L3DoewiknxpB5Z9lTkjnBXKWFUYpN6FRZaiIo1CCsmtjLyj5kHsV7kto81KTT/KPg5w2jPQ1kLkKlaDT9Xx1YW3CDXCVo5V6Ne6hYcJvEADYLiQjmKSpi7jAIIVjlaZejEaWQfITS1XASlZH8q4cH+MYbb/AbfsNveOFnv/7X/3r+wT/4Bx/oRb/5m795a1++8sorxBj57Gc/+8JjPvvZz/KRj3xke13gPV/7f/7P//merzFNE9M0faD39e6jFVDPTkMy9fbmNAOPDBCgHiwQrU3MPHQxFZjoQYDkN1LHtiOWxQcYjoHlZbO6sdkPG1QePCAKRtoGwhrNC06tFaZJmW93MMDbsufjl2/zkcON2Y/4Jh9EECeEF7zqE6t2erXl/99xW7bJBhikubmvIb4MxGAVZZKRUhL3ZbShuTp+JDRSMNmzWgKm+w4ixhGcl4EhVaahMMZKqc1U/t1fzQj4urWTLB+wd+rUKwsSSQhh5fHlzJoTd6cJiWIgg61idN+9dn4OrUpIVkHadTZukt/duNmhVWYNpAZiFRMNnoy2UIIwJExure+LUY1CsVdqM1BDKLYmaEpoFlzjagCansCgkG4j9arS9iA7Ba0wR1gDLQgyiMvsYfJ7546v03KgJDE3kVFpO6GdTG6vewX+ShzSYLqFoAGJsDDQXoU6VKKeKTFNvcxRu8hNBC3CcrdjnApztEpjrgMhNJY8cKqD6cYWt7uvpi9qu1izuew2Dzzfa2ewmMv5DdUSFz+0eJXW8C4A28nt1d92bGo+PWGCEINXc0opts67Vmifi1klacGyz8i2qk/YtEtDOBPRzeg3cJd3JtodK0ltDiwyM7GarJp0jm6gauTESHNy/6N04lJO7MXWePas2kM0is8KfTxwoSurNoSBk1pXZwoF1QUUVgaKnjmDe8lka5dQNJHVKsGikXfqJa/IHddhZgrF6Fdirz5SGShuGfWrpAL8tm/7Nn7qp37qhZ/95//8n/nqr/7qD/Si/+E//IctqI3jyG/5Lb+FH/mRH+H3//7fD1jF9yM/8iP8iT/xJwD4mq/5Gj760Y++52v/vt/3+z7Qa3+ww2ZJYWjUnKx10VssQWFUNDWkGqE0HX2Wc7QbrwWljh7Y/GZUMfJy2cPdVxjBmiDEuQMxfKNs4BKSxNX+rrVmiNNBqRdKuCyMLx/59S+9ya998jkOYSH2lhyBQqTgPL0mW2eoo7ACMIihPIdg/l/7YHQGHNUpQJFOGLbWSEF4a73grux4Z9mZFYqT3wNqYtcayE7KpRlyLtfEUoSLKTOmtsG+l2oQ6Q4nh3Og2/QP8QDdrApMyeZ1pUXm48CyJAM+pMLFfqU14X4eaDVa9edZv0i1zSYY4g6ElQiq1hpLahXgKRinr8tt+dyNCRjsWpYcKTVukHvN0bRjTz4fLFbpg5Hie2fWdjprmwNoAz1YlceS0FVhMRNcOTkIZzXR6eDP2/r5GHweeOV7WIV0FNKipPtz4Osv2//95TxEIRRluRRkasQpo2I2Xn2rrs28HWsN5FNC1whHQS4aRYVUBSVyqpE8D5TTCCdvU0tDqptTR+xkpE5o9M2cQIcdehEEXXCgRrToVvGdj3OnwUpE++8uoL49RrDn9/tDe4sTBRoSAiF6693ne73ii8mqV21sb6qrr2yocnQTpg4YunQukbd1z20aeWk8UV1B5cI9E/divn1VhczASUe+erh36pP5dk6yshDILXLPwKqJpSV7Lr93G8Hd7mEvmX1YuasTz/PekOQaLJhROcjMSSey83fB3DG6dupFXEhUPiLPGB9kYeLnJdGo8qtICea7v/u7+dZv/Va+93u/lz/4B/8gP/7jP84P/MAP8AM/8APbY77ne76HT3/60/zwD/8wAJ/61Kf4+Mc/ztd//dczzzM/+IM/yL/8l/+Sf/bP/tn2N5/85Cf5zu/8Tj7xiU/wzd/8zXzqU5/i/v5+a3eKCH/6T/9p/vyf//N8wzd8A9/4jd/I3/k7f4ef/Mmf5O///b//xTgP73lY9SDUxRa0CLZBtnbmHYnQDg1NynEQyjOh7AK75y5TVbBWY5Tef4RmxqZX/x3Wx8J6BW20TVayk6bxStBJ8xIhuJ9JqJVptoDU2shPL6/z9vGCjz95i1f3d1ym1bk81uKoEojBDG4LbANwdbqDZZpCURuqD6GSHPDShYPBZgI9OD6OJ6ZQmELmWT5wzIm1mYXMXBNRTPJMmimV7VJXwzAHiLVExmSyVPuhkgPkYJuiOgimK8BEz3CbWvYco9ncdDX8EJTdzrQYtQXuTiNDbBymTG2VXCKlWBrfZ2V4wBWEIbnSSlDKmiy3vbQWZ1hdEaZBPGHo0yywq+igmAOw81sHpQUD5OgQyElIp4CerGCJi31194+yw6TRAJlhykK5UNpkSVLzKqAG+2+CAWXiYlJofQ4YF5gqlL21xcslm69kOjnp3ff2X/bgh90W8QQv/Sc4fWRgvYmU11b0oqCj+QMGgTE1K9b2UINSQ0DXBDkyr0LaVeJQGYZGlIUcBp/XBh8D2HWhgN5GmBSGZvcRxg/E57jbJLh41e0zeQ084KC8++x4ed6zhl6aPWjJa7MERrZZZESbU2fcMLkHyM4RFPHHewLYT1xXXrKJg1JFXJhCzM4L0+7NNXIxrNzHgUfjzCnOnGLiIqyMIRN9pvg/80s8CjNP4j2P44lGYZBCCoVBK0dGUmjMrTOE7R5JYuerakUJ7MPKVw7v8KxdcFN3nNrIrANZAlMsXMps1mdtYHWFl0jjWd1REFb9aj4yPOOVdMdObB4YsYTlrv7SunS/1OMDBcDf+lt/K//wH/5Dvud7voe/9Jf+Eh//+Mf51Kc+xR/+w394e8zP/dzPvdCWXNeVP/Wn/hSf/vSnORwO/Kbf9Jv4F//iX/Dt3/7t22P+0B/6Q3zuc5/jz/25P8dnPvMZvvEbv5F/+k//6QvAmD/5J/8k8zzz3d/93bzzzjt8wzd8A//8n/9zvvZrv/aX8vnf9+i2N4hZrfgozH7Wkb0VpATifWC8Ecabxv6Zkk5qIJVgAazzunoF2JJRIFqCtAjMnBPQBu6cYsEvsOlA1r2yXAc++lVv89E33uG13Y1bGQkXYeUiLtYFaoGTjiCW2Y1iDtrWid/yVrCGrjs8OBJNoWLZXm7WVunJNhja61Qn8y9ribWaJmjXB9zFYtJL3pKZS+K0jiwe3FJoTKP1gEuFtUZqNXPV3ojtih7abAOpDh3H5ZgMkWcnqTVhWUzRRkLjMBVSaBzXwUxOizAMjWEoxHietwTfaI7zjrwk2hohmw5oWIJtlt2VXdTa0a7dqRqgNsTNcrVzRBX7DEEJ2AzMuk62cZq9kSntjEefP0WhjUp+SSCaq4TMINmALzHb9zGzvSdBTUrPKRXlQtyb0BKvdFTSgts4/coevRCrk33mctVgtH7gIOaq3qXylnWgHhN6iqQboyOUQ0OmgIZq8+E1UJ+OhJMJmBOtHY13QjX4tQmweQFiICcVrCpXNlUnVZBi7deeGHh4pEu/nz+MX9Pexemjj62U9g5BA2g2042YhFs0WsW5uOntzfP7sDUjJhDW14hYUhfFhLalK80Q3CfRRglhsn0iiampZE2MWr2Sg8uwkCUTsGrrcbTvs4ISGajc62Qi9hq3APheK+akphgzV1OdUfBWZ0eNmx1av/Z9Vniswtfvf46Pj597QbC7qrC0xFv16gOtrS/2IfqlpOH/Ch43Nzc8evSI58+fv0DIf7/j//33/iY/e7yhAymAz+8lCZCFcBKGp8L03Dat4VaJqyHxADQYX0t9btiC2OYVoQ4mhbbdhH7DqZxbZnUAhkZ7NTNOhavrE4erE48enXh0eeQQF/cbU3bBkJziVd7SIsUJq029Fbu9fd0+lh2yAVRmr+g6fULV/u1IsLVF1ppMvLqZ7qKqBYzBASprTfb3NbFkC4id1hDD+fVL7fPVni2fs+atNaSBGI1AezFaWROC8Qlr87/3DLqpkGK1VjLdCNhkpoLbEqnajFJUKKdoKN8lmqKOu5pLle0aaNRNIo3RaBMyNCQ2JCnTkJ32IZQlUdcEiyCrGSDHkxBnIblTSBdRJlpiUyO0nV/raEEvVFeUqWdyvTSc96cuqeeBUIBgM0dZlLQqcfZOgp6X66/UocB8DfUSjl9Z4ElmfFQgVFJQEyXIgXocaKeI5mAiEk1gbGhqhF2D7Gja+2CtUp8Vk6BOzWyJxmZteCvCjKQbOPeKLfvc2pb2Bvt9LVYtdkm99zhP5+JQ35s8Jv0EGzpUQiMNlTRYlyO38x/1uGnV8sOZn24zwBCay6ZVd3Q3krs+6MYGUfYpc4grj8cTu5gNLSpmMHwIK5dx5lE88Vq84SIsXIWVQYwre9sGMpH7Zu3QgomTG3oUqkYW0rZ2bsqepSXudWJpwyaqndy300TFI0XdgQZ4Kd3x+njDdTjx2nDLdTx5wA/ctYn/e/4of/o3/NMvuAX6i9nH3+/4UAv0fY5ut9Jvku1GeqC4TwQG26TrAfReiCukbHB1xaHuvotau/HhuEJIBeOsRfuhIpvaiDq3KzRrAerdwHLVSI+VR9crl4cT+2QQw7UlJjepPbbAGAojheu4mqloHciStgI2oGejTMXboFaFdSDM2gb3ZjPthm51VNSEjYsDCx4qxYgqJSijNHejH1mbZ5mu65m6UoY7afcKrwc90M2mxi6BBde8RIbRdB2vpoVdylzthJvTnpvTzs4djSFWmpqJrgIxNqYxuxWOPW9t0IKS18iqycQ7i7tBuNmtdG7Tdo6sZdw64sdh8yFY1bybsrVUL1aW08DxbkKjWBHibXBBCEdTcYkNA+UUkAshD5YYdIWp6EEwuNt732f7/wiWRLXBEaIKLUOMoEnQ4YFlUvuVmQH2Q4DdLSwRhqeJdRDWCfaHSojeZmuBEqxNEk6RMSt159XjpHbvJJA1QQmk2YJhF/MJJdA8ORx2C9oCZbVkT0KDoSFqgfaM0X8wL8TaOjaOE3OZqGFDRfeCr3//YvXXnwOPkNYGtZZo8GTTKsFpWM1tvj4khYtv/Lq9Rq/2zsAYE2dIYs4MMbxYPS412WOyUHShamYIhTUkE7AQOISVhcR1WFyFx3ACg1ROOrKqBUJTw7Hz1HUiROG+7cwsW5QmkdqSUd/FKtKsQ59++tmQTYXprfKIKVS+Yv+My7jSiKxEntYL3q6XvJmvf/WAYP53O8w2R6x10hQpsm3yNlmuhKmYJFNT4mymmJJdJixaph/UF6yjAYkdmWazAA3eRnNVDzyjF9hMUxVBayNfGNw+5oGbZcer+1tm9xsbRCkaGWRlIjNRqAROzTZ4ESFSGdVNNnFkWAusWIDKGiktcazm6G7SZtHJ78EzRFvcTcUy2w6x9l2hqSA1sIa27RMxNHNDaGw3Mdh5yQUXtH5QVos9Vrc5i7VD42C+aJfjTBTl2WnHWiL38+TbihIHV91vSkyFGJTDtGCBvTd/lTlHak7ku8H0QOcA2asr7e1JtcDhbTZNCskqP5LNnFI054nLaWFMlaUmao2c1uhgqYqGQImGSNVq13XIvvk5ECMeDbChSWjRwFDiikOdNgFsAVlxfdkR1kfnXXm4xdp7WSHZZ03lV74V2t/s+BzmxyCL1QWnPKALaAloDshNQmZB7pWyFzMSjs0i5yrIAvEUSCc27mPbK+VCiVcL077w0vU9a4vMeSAMdfOLBAPVKWZdhBihfZpWplQ3MNaSE89u9wZe6knX9t2D+/6Fz6bvOqkeWZKBohADaWmGtUsDRks4e7fDLqRuL6Zq7d1OcRD/PlAZQ2UITpEIQmndm8/wALWjp7EkdAzZND3JVA0cW2IfVkSVkyvKPGuWNJ6d5e11Z02sOvCs7snNpNGyniu8plattwcnQLXjC84BfmLhMh35X/kJny1XpKBbkv1z6yNuyv5XDwjmf7/Dl33BhtlJN/dvbaA50HQwNfp9JX91Q99J6C4yvaUMd4bgDJ7NdxNrdbK2WGMfqeq8Izc79cF6TRhnjd51EabPBupJmOcDn3tis7WPXj/jpd0RTcbNObWRGiJFMzsxh+3YsqFCNbhOp2WHEeP7RY3kPg90SHbEKBTdEUGweZ1gi1jElN6b6XhZBvigU1zdQV4wQEwYlBggF3fY9pbPNFQPguYAYRwrNoi4Cojrc7YaWEvgc+2Ci13mMK4Mbkp6WgZKjSxrJEWTlFKsurybd0xDYUjGSleVDXwTglJOAzWCzNGUWLLfkD7HFRG02AzPyPthWx8V0FW4VWE3FnZDJo2N4VHjfh5ZloESIsRAHRTdB9qdmSKno7U4g6lqmTFyUmuDJtDRugMIL5jverFhhssLyFPIF2pGy9cQVqElI9DHGVSUmN2qya/Rr8SWIwANrv4HrM+E082B+kZGrosJOIiijzI6JEvsTgJHoZaEHpwHGYQaFEIw6cEVhjubjZY8Uq4ib1Xh6so8B8sQWEsyUBT43LdZ6835fnkdvLqvjKmwmzKvDoXTaeJ0HKjzcAbHPDwejkDO3zz4JZthbl3x9w8pWTCrTqcxIJB1OrooRD9jrQHB0JH2CBPSUBGU7g6vjEEx+nvgrkybM8shZXah0DBEaNbIS3o0AYxoleCFrAxhYZTKTd0zy0Dp7WCBHcWqThr3sjMkah3stmiR6vd8PwO9Y9Tvit5oXhj5f44f4aXhnkfpRFDlWEfeyRcsOrzQGv5SHB8GwPc5LPh4b2LTkARNjThWQmoMQ7VNeU6ktwfSW5HDm7wgXqyhNwb8Fgme5QZ8UXvrxFeQxg6cMSoFHQQzQb0Q1mslXlnQ3e0yVYyAvg8nnqR7rqJVR0WNCrG284B7lMrgCvlgC/fUhi04FhfNfl72nMrIMQ+bSWduzv5RdeuirtPpvERkExXuc7shVqZUzCOwGYLNdD+hulJJc/+08+zPznurD2yQ9LxrGzLQzt3bd5eUGqnForZIY5oKITRytjI6xsaQbNPINW7vd1kH8hppxwGWQDgG3xSVNqm1D5NVgOKGuBbNMf/AoZLGSkqVy91Z2qub8N7OE7mYua84JJ8SkCre2hSbBfa14eOlVq27auWqS7N5gOyHOriqjaa8Mr9RaRNQIN0ZhaNrmAoQmxBX3Vqo71nRfJGPFzqF0dq4w53AZwZmAjr6r+4ichKGe0CEstOtdRtvkumgHo1TScNoQINVvelRZrheeHRx4nI04rxilkc36465JHKL5BKZ18Q4NqZU+MjVLRdDZpDCfRm5XUfevLnmNI+003BuaT485F3fvzsIqn1Oo9jqlrxay9wSrZRebGPqCxVTb/+f29zmCK+MsVmiJ8bpaHp+I4oyOo1pio0pVK7SzMGVYnbBUtuTjozamLSQdU/H+KnY+KRXc4lmwJgWWXWkELlvO7I6EV6sl5KijTCyBqK/j1UHPs8sV4Sn9ZJ3yqV/RiuUl+pt2i/h8WEAfJ8jJkcbbGgUBVd6CApUawGqBlJryL7Ao8ZRIuMz4wWa75q3PPuqbbpteN28U30upf3nrpLRbw3tcyGpTCcljEoKwr1OXIWFmcgcI890T9HALmTGUAhUJkdkNsVla5WiuFySKTaINAzCBpnARZipAVpUTnWgaSJKcxSa7c4iQhSbC9poRDdfvL4nmAK+0RJUIYXimWpwugPYDOScCfduyBmR9wCbp1BX4VQTJyJjasRQkGTIONQQoaCkZFOJWoXaklW3sfq5D4gqgzZqKrQSreIoslVX5hTrAT2pn39PbLwlThBiaqyrgEZKEDdehcO0sIgZBZt5aDT6RHPhA8/s00nRRToXeftqvR3e98gHe63HcVwplfHtQNkrdae0USmXikYH3Cz2ntuFzxJ7S9W6dC9sV1+so9PrHoaQsMD0VI3KcR9ZXoY6Noi2ltpg5z4sghSTubFAaK4ZbbVkQJq1/YZbaCHS2sB9U8KFCRBcDCZRt0+rtVJ0oIpwmBYEYQyZ29NI0EqN0UxjQ+Xlwz03WjlKZZ0HR4/2Jqh9mBdi3uedMNvZVT0IulNLUwhJTXy7WveoE+V7vdQP9cBbOx3CbZBaTkwKUcQCId5FElMmMosk4VQGEpVbJoKaRKIiVMlktXv1GBNXYeYgqxPaKxfMnDBO30wy0JzrfmYNXIcjJyaWls7i1mrrz0xurS0apaKq/t+2aJtLFvX7ujXZJBj1hRXyK398GADf50hTdg1AHwg5MjGMShgLw2CbaSmBtY5QIuEYGW+M52eKTb6JKTas9qdSQ6HY4YN1F2fx38kLG59gbUCpkXxRCNfKeJm5PCwQlUe7hZenI0/SHWNoZ7NarOUpWCaZvGnykIuz6EBpJl8UVJm0mBs7gVUHpzpYFdmabBXcWcXePwZsKDWzS3QCveCVF25864AXzoCgs/j1+RD/kRV/D3YcJ8+GAGtJZ74X6nwse81aowESnPqgAq10sI74hhTRJTnx3SvZpOhe0VGRyQPmYqosuIKPqhDHSpxMIu2wq+yG1Z5XAWnkOpBrdxDwtSDB5rurBT+rAg2A32Hisdq+3cV8tHPMPGAhNiIrO0zxZYB6pZSD/3IFafZ5xFvvLSnpdEa0ttHXVQMtZ7TyF+voFYx2zAego9F+pAppFXgK+TKg0YLjcG8JYz6YUk5L5q4R3WbKZl9AMpBGnqCmgI6BIQFR2KXGGG1dGyHbENBNhVIGYqyMSbg+rFwPCxdD3ubS9+vEUgdyHsxpRF3zl/NneO/q+eFP37WGQ+t5pQcAIca2CT1A//fBffRAxaYpaI2EZCOFmFxNRxzI5vOz4Gs+Otd4DCY3tg+ZMTg8RYSVRNDGqU1oEA4hM6iySqC0wErykCjMdfDETVh05KQDSNjWZQfL9GDXnEt4/v5d5+PB522YRdmvKiWY/92Oi10m7gp1TpapBCUOlRBtnrDMRrzmzhFsnxPCvZOU6QHMspzQzreIhgd5X6/+gpjHnPNCW7IMvrdD616pV43h5ROXF5knlyd2u4Xr6cRru1uu0sKO1TK4NpgvGYGEusFtw/CHdnPZLBDmGjnVHbNau2NpiWNJ3OeJYxlMtNiVHbCPY8+lQqKSQt2oB2v1TI/zTXFcRuf3gc07nKfVg5qjLDvy893zkK2a3Epjfx8Bn+ewPUCcdxVEbZ7YKSg59ITVqm8PqnpKJpu1gkalJpcMiQ3ZFSQ1QlTqat6O510Ho6SgDCgpVESUuSQEDFS0Jk7zaJ+vYnzGBmz0B2ut1qBIFFP/wdCgDz6SfbmiuLQeUIT1UqmTu0BMSh17haqEU4BV7UuDA7i8ZeqbsUarAkMwLllHBsOLW/gXWhmeG17uUOFc103KTgz1Otz5er+FsBeGWx8HNJvt1V2fX6rpmZbzvdGDag3NAuSoxF02oJM0Tjmx1gNDtPlVrmY4u5RkfpWh8nh/5CotvDremdJRU27znrs8cL+YyDreZiS4jB6YgEL/LNsn/nnOhPSEV2nV7//Q7ZHMQWHY+FFGHzBBbe93qDwIgvbfa4k0MfGGi2khuLh1l1tDrXUZDMXDWgM1BNaaGGW2+0uhSuTYJhrBLI5kIaDsJPNM9xxb5N5tkHTrFlkQ3LGiCEXiFsC6s0zxZFfVMy61e91UqfoKetjGCLhU/ocgmC/XYz+uDKORr7QmWnE4tQohFUIEQqVc2IYykxiGc9a4KXDIGZ2l6i20cKYd9Z8HBVY2Y92ODhOFtCpyJxTd0VrknQBXUQhJHXVq+oOXsjCJyxEBGSFwJqAHJ0apI7mmqARZkDqC86g0CjgkRiVsVdNDR+eNSqCRGCpRYB8MbVbd60xVud4vLDm51mfYquheLm4bpL7XDfAg4ImHVg8K6ueQYMGl/wwVNFrgiqFtNIjt+eVBUJ2acw7UQC81uFpPsKqQioZmVV4L5oe8GlWCOaJNWOjw78B+XM24NDRkrIhkTvNwbp2GTktoEAJZjP9JhLioqZyItSlj8eos416S9llFgaKMN1APyqr2vIgFDwLUa0VnQYIgR09IJquiQrHnaM3WbBWj26TVXkseJGqfX5O//9H/rr+GCGcTaKeB5GhgnJBhPCq6KmU0TqxEGI6gsyWR9WCzPnH+Y4/QoQocrR1a2kirgTsVdvvMmArKQHUJshhhoLDkRG3w9P5AnixUvLy/4zJmXp7u2MeJJMpbxwuey8FU13JXG/95WnXvzg7kwc8RtAabA1Z3kEdQHdyCS0wJKRpvtzbj27ZuGvnul1Ln2bZAnQP7IdOSOUFErKXaJLC0ESWjUXhaAhchUYlcxJnRsyslMDPydgvMOvIo3rOTzBvphpu25x2B27JjZqBo3FqX1cv55Ml0xMA8FUvqihPkgyvRgBJ8o2vbQKcv5eIyhx+CYL5sjyEUnlzOPL3bUUIlTuUcrHzjXe8nwm0kPguMt4bi63DtDbrebxSf42ni3AIVQ4Wpz3rqzjaNOig62r/lAuSiMX3knpcuTrx0uOelyTLZ63QyeLS/WHWochCr/PahMEphHxYEmNvAsU0c28DSBpaWuK0TaxtYauTe1V2WmiyYWUJLCo2LWGyeoOc7PQo+h/ANT6uhz2rkbplYSmLJBnzpwALLWhu7aSUFnxe4N9pD09HNBulhcBRBmxIThHQGYXfX7RBsOA+Q3ei0rsHpJL659Fi4BJvziFowPJTze4w+p4kmqdXUr9eoMFYkgsRGSo0Uld1oUM2lBI7LyLoO5KNHrnMBvCkHhWPwWZclPBpMOms4CS7VsUlaxtw/uxd0rvyyPG7Uw4N2pmnHke6EeHTJtSJWdXqS0LrDyPaelPCAjvHeLb5f+Oh/p95erQOUnThXUo3IvyrD0Vu8/jesGDinn54R8sGBO6sQs9Lc8mmrwKKgI+TLhk6+8ErkeIwcxWTxpjHTttZnJARliIWvfvSMV/b3PE5HW3sNnuYDpzZwW03tZK3RK0AekOMfRrvzGuLhr4TzY+XhY+w5tBkgpLTATkyt6DAupoyjcLvsWGv0oHC+EmeOoL32GA3ZfZnyRoS3x9lQYfsXOLWBKhbodmHdsu0oyhUzr4x3NInct8jb9ZK7tuN5PVCc1xsxz8B9XM3lQtUBc5FjHa0i1GjuD1oJLnxvGAOxijCAvrCy7L6uzg3+Uh4fBsD3OUSEKWVeulKWHDmtidXbXK0JbRViLMiuoY8COURaCrSgpFkMLeXKHWqSkYYS8y7LBoIJZ/UXyUD06dhUSEkZRNnLAk9tB7srE8NVJYwVdGSfCmMQJrHWD9Kna/hwPIAOpGDE910wcIAKrAR2km3jEmXnGxahsbbkig52Jy81EMUkmoCtKykPNgRV8f2hcTHOBBmJIbLkgeKozo58yyVBzOYQH0ziKaVKaFa52a4OiG5VW5/3GYLUHLZr6zW3AQ2yWgUapNn5Hhs1R1rGA6HdjBoajA2q2VlxmywQDopWO3eixidLQ4NkiN/mMHct4uR+yGXHNFSCmMmvRAi7RsnJHMcfHBoa9UKN75cDYbF5sXeHqdGCV1zZvAT7/uH4I6Qo4zOhFKg7pYy2tlAseTrYY+MMEXFdUTYyfa9Kwa25RGhOlfjFukf4/owvL3N/GK2Vj+omAt+8Aux89IevFVegWtJX1ZIDms0INeGbqQFlxhxoO6yC3AXa2AhjpcRALSPDaK3pFC05CaK8c9yjVckTXE8rU8w8GY8MoTBQeLM1huvC8+OedU1k3LSx/Dypwbvi4nYm1N63Kqg7SkhwlHQL3LaJUoVcA5fjYi7ww8wQE0tOLi3oiYknjUYdEuYyeACZuBqFNQpXw8JBsqG/jUXYBwMsNVAkMLfAJNXuN20UPXBTdjxJ91y4ObagRK3c6c4oCt69OrXAgCWYgu0je1kIJCKVrIkqgaCb2KqpyWDSf/Z//r68NXoW3vjSHR8GwPc5lhKZYumdeIbUKLVwP49mq5KUdj/QjpF0F4h3blrqs4tOcAZvf+lDaTTOQBcvjsqAAQUGKHuhHRReW0jXmTqufOXVc17d35FCZRcyl3HmMq2MFOY2uFpD25TkBzHLkV3IjA56MXcIJevArGZjdFf3HOtAbtGrP1N+6aTWKI0xZkvm33WOggfE6EGqStiI4NmfYy2mFt99AdHzTCRGOAymHXoqA00H1jXR+rBqa5t4kI3NCNTNeFEisJsy6zJSciCk7vbgW0cz8ICWYMhCh9IL4nxLdVqDBT6DRPqO9tAKRyAmZRyzAXmqbO9RAoTooAsCZQ0sc4LVZowiL+6NqFdm/pF0NDeMkO1zxpWOs9se39dSeFDF5WuhXKoFCbBA0cRaqPemMRucSL/RKB5GnD7u8q/gaGcRXqBcfJBjK3rUEkjTK7UqNK6mT2qf873/1nNCQoG8hzaJfd4H16F3YQT/rARo0OZA25k6yeHRiZSaiaa7wlAVQw0/2c+8sb/lMs4u/pC4TCtznRhT5elpYC3ddsnWyc/7hnnv30k/iQJ9JgYuQO8XYq0DKRlZfnKajorpn1YapUN9MTpRkGbEerXRQ3CD3OALRYLyZDhyCCv33uVZPZAq0DRy0kDQs9vEGAolR57HvVufKZm0UacmCoe4kLw33jAz3NwiGXOSaFibNGmjRaE00yJFLdhVwtY+xa9dnx+a6tUvJt364hwfBsD3OZZiQWUXDYKWW2JeB9s4F6HdR8IixDuFxcENal2T2DtuzqIIquf5ShfGVnU+l2xzxCZKflTRx5WPfeQd4lSpEa4vjlwPM4nCXjKRxtoiN2UiycAglUlWGk5gx7K8JiY6WzcJtsBdHckaKNWcG5YSWKopwljn3uZUYzh7/yl4oGsbmq25cG+kEQPMzZ3afcipbpNkhPfmWp3Bskix1ylVODGwFtskavWsN3Q1/3OKrV4Bqii4juSiMB8jQYQ4FrqTRKkuE5Zt83VxQ68APSuP4lWTQjlX4bY7KGFsxNAYx0L0cqU1IYgja8UtnappinbeHsWHa9Uh8fVsvNo/ThOr/GuwpEhWkCKEk629zphxKtm5CBT7Xdnb+ZOmhkwV7yr4c9k69Nq9YVJonmzZE/rG3gBP1sRnd/rg9X5RlaB6Rbsqsfv1+WsZAvBBgH9w6IN/q1+XjYvekxJ/kDcGzBqrCjUpMllioU04HkcOrBsCeEyFKRZemu5AK3d5pDYTaFhb5Om6563Tnuen0SgWodKSX9L2IEt995v4vA9/foT0nrCfc6NF+H0QDc152ybmNXEzT+yH7OINPcC3LfaWGh4EO7tDTyUSJSJ4mawjSeB6PPGx8W1ObeCu7nhe9h7QrP2k/d7F+H+ZwEkHs0gTI0rZLW6gmrkahcg6MYFFk4k/+IKO7hlqp8d6RpGuKQxLjVvld+5N9RZr/RAE8+V6HHOydoovvH3KhIvGcZnoxrHVQSKpYTY5ydo/rflNrj0B7D0sNoL8eaivpKNQ9sAO0r295s+El3jyxh2vXj2HGFh0YE82NwRxartDjrMKVSKDFELf7SQg3utqRIJY+2IXVxChUGiyAjZ8b0RqtYwsBig1PiDiGtAl9K6kNB7WaAJcxJWsEXHTzeifb2FAtaHRenStGWDHXisStDEkC3jVz1dHcD4sV+yceQCLFsx0TUiy8ibPAyGqK/H7JuRjuO5CjiqS/R1Xr8zB0aEPJK9EaCtbljpNxdCFsaHaCE4ULsWy39Zwl22rWLoo+CbcDBaIHmpJdkRmf2iw2Yn0GbI6h6y3K9WruQzT2xAemVqYHNiQxSLGmeudbG1s9pWhYtZB0Rem/w3JkaoobvT9QlfvF7M1BQXJ/hkwuT+rCNXAY10I/MHzbxVgg+neqlkRyBfQhvMcc6tO/V5Crc0r/nlrS+iFcBKYdoWYKrkmVCM/d3zEa4c7dqkyEoiYm8LjcabbgmUdkeLI7aDWetVm8+LtgnmmEPpyeZ+g2A/F1oNEHCeNApno8/bAEE082+4xsftbbf32+6lXc9oCdxkXmLd7vK2RrK/wht7wynDDId5yERdu8p57nVidzN6PhhB8IVSE6pR2wfiFKsYpjqGCWtcl0dAWyYRNAcZGpsYJtFavCfN3lOpcBxPUpzd17bhMy4cV4JfrUdbIjey4mkxE9j4P3B133B9H9H5A5sDwPBAXIThyLVQxeareWuLhDe48LO+sdFyIBgcyROuXx5cKF7/xOR+5vuG1/S0B2MeVN6bniNjg/r5NVGv+eE++MYVMCqbxKdum720tlKaB1bmBWSOfXa+4yXueLZYhZh++C6bd+Wg382g4MYS6meMG29HMP0wDBTmLWfsnre4ScbPs/Mbu3EGh1sA4VIahsBssyi0lspaBXILDzm3uNqbCblw3Ee7TPLglEsbLc5ReW6Nlq7sKUc0Nu9iMjhLc4ijYBlrtnKg0UyLZxnM9YgiiClGJU2O6WNgNhSlV9oPBwE85oZjLhYQHbhVN0BJMV7SGB7qSDzbHXl71tdEEKcZ3S3dK2sAr9idt8JZnczskbENpe+MB6uAb0Hpet3GFmIU0W8sxnryFKgYywQNR/1moEItuBr0Pzsgv6RCFlDFpufean73X3/AgPyhKFjE+o/TIJ2ZYDJ2aa6c02srVqhBMRHtIjRgbl7uFyyFzNcx8xeE5u5iZ68CqI3OB27zjruz42btrTuvAvNjcttUOnpJNAN9OmFNpvJPRb3IJStjE1jHdV3X6i54VjsASL/EuwpZsqLVvm7bzmvLfGq3pLIgd+v2IgcdmV1VZW+KldM/HxrdN6ILAPUaeT7WhNGofFlva9cJ19l4L4hO7IAZ6qTVuCi7dQFcw6kX0zxBFGcSAcmuLvNMumNvIbR6t+nzXGjjEha/YPfuwAvxyPVpJLCRKFQMAxmLUCDG1iCIDRSJ6FwlRiCfQ7F2P7gDePGv39aadz9Q3Qb/uccE25wnirLT/3wXPPwbrK4mXH98iKD9zemx8v2jyRk2L83Ws3bBqotZGC8UWJj0zVX85IdJ8Fqe8PjxnJyujrDxdL5irIUHBKpqlRJ7WPdfjwhQtuKrrdQ1USlNQYx41EWgRVRhCRpONwe/zjkUjrbO8h2bzwDUZUCIqSSohKVEMPVqbAQVKFe5PE8NQbNY3Zje3jS4w3dA1uvqM0OYEixKGeu6RBYVUrWlUgt22vhFJNfFp85XT84VRrFIKsN4OyF7QCVQHUqgGPQ+NITROa6LUiIbg5/gshGwR512kz/78/W1g1awMynplM7M6mDqM9AoHjN6Q2FRcxhsDhqyLtUM7BULVkikVax9qsMoyzv63KybiHdhAJXXEUKhBz64TX/zb6Qs+BCu44gL7z5qqTd4Ldc8mDqGwnVfBqk2aJRTxLhJWIa8T4Rpuyo51l1gnCzCXw8KjYSaFRtPIGAwl/dHDM57FA7dx5DhPlGJVjngg2+yT/BJS7XqZ55+1DunCC0EJsZp7ipPq+2BMYdMkFbUkKqhV/6GBOKUpeBIrGADGqse2odCDKNpMnLo2sworDX5aX+XN9Ypfd/gsj4d7A6uERqRybOb+sLh331lrCQ+oVlKnB2W2dLcMrAETaD7Xs1qxqGx7TXZy+04yH5mec1EWdrLn2ExFRjkHyl0ovDrc/gqsqJ//+DAAvs9Rc2DVxJBMQf5u3VFypCwJnSOcAuNtIB4hzm5kWp2n1HQTOMb34YdABDdReAEEIw69Li3x6Nfc8OQrnvHG4TlXcfXWpi3URQcWHbGFau7tk1MhkpNj8QwuoQySmUIlaOO27TnpyKlOvJWveGc9cJN3nEpiqcPWqt0lEzx6dXfk0TAzxXULtMVJskkapzq6RVIkqxFvT3XgWBJLNieJNbvPWBOa0w6GoTIkZT+s5hlYbbAPnhk7Et00PG3fySWx5oh2V/ZT2twyJGEDsyBoTpaxl+C0gzM3c6vHgosNjN6r9utjSYq620NjOmT2Y+YwLuySneOsES0GYJJg8z9tgVYELdFedxWH0LO99hYE+8btlUVvTQ4nIc7GhZNmm2u5tLWRjkpq9ljbEHs1aFzCvva2wKW4A70Z5IbVKr42Gqm8jdZ3lbqJzNn78S3xSxkA4UE7FBMMV0dRlsmr2X6t/HR2FSVxs9xmvXuyRh7tj1zsFqoLuO9TYdXE7IntfR15Z9nzbD5wv4xU15Yt2bKHzi89JzEA6vxLu7mNFqPeKq+kaMAwUI7rwJKTV4FW2fV7VMKD77dPbhKBjXMQSl5ZxgcGux3IYgZgwVTfSEiBy0F41i6IVXlGYGmGaD3XYIbudGOjc1IBHEJmJ9ncJLx7FMRmlosaN7Co2SDlZrWizQstKUxU8yZV2A3GSV7yYFgK/zwvpXs+vnvLgXsftkC/LA9ZAlWSqb4syTKuEiD7hrJYpq9Ym0o6wALdhsIdvbcFuocv8LASEKhRyXt4+Y3nXLTM5W1hCQkdhTEEohgQxZCXlnWKK1yINpqYxqcoJKwCyAQKI0tRjm2gtsjTcuCuDJxqZCl245RqVWHzmzzXQEiNY0lcpUbUxhiKyyFBbrC0SG7exvE2Z1UoRcg5bLqHgnmyaQeaqJDXyCxKrtaeCWJzQDxQgiEta3WyrBPrgyqtYuoutPPOVzCE50P4Yv82PqBRyNl5g6jn6kwUBsvcTbnDzm/JYpZDTUAbqweJMRZrlaKULKwaNoQppT+v//e7u39bIXgGuodiG15UoYz2dvpcj+I8uGYSaNE5pvEEcVCGDLoz6yR8c+30FBWjRWwKM64KEz0+d5i7Oscx+FvvaOUvJUi9F+ShwnirLOoem0PYuin93zrqGaeiIAX0FCAG3rm5YM6JR/sTU8zc58Fn2srSDPwVqYyxMLvKiamxuGjBWc6Ghxfz7NUAIVSb39E8WbWRQyd6D7HY9xu62Z9jW3/9A7/wEhb0HHy2G0xoYQOkvFDD+X7juqBvni65LyM/G664Hhbz/QTGWD1QuSsKQsHb/sAoNrsbxTpdAiQpRCBLMLR2s5Zm0kKRZOAWxcYrGrgMhabKII1I4at3b/Gx6R2OdQKBQ1gYQyM3N93+sAX6ZXosAY1m0SOxOVfO2kUtCWEQM06N4ig7faD7aYc+3JM/v9luWbjfX6mA3MPbP/uYdbxlfHnhjXHmYlgdPWczPFGjJpiOXqWokqQYINmftxHObCC1+dwklVOItvjDjrUMNAnkLomrRlcAy/Y+N19SCYyxkIKyk8LjdGLVxD2jE3RNTV8RBsfbt6EavLzh9AefGUQITamuzrIswjg6P1J6Ttrta9SALPpAO1RwHqU6SSw+4PXhu7VXhPU9bqj++87aV0yxooNCsNMVEqZPGQSVYB5zwXQWL4aVGBpriQypcRlWAnAMcNKBuvSUXs5V3na5H1SCW3D2OLmz39ZJGU6GZmxqv6+7B9WZgLg2ZmjKeIsZ6bpwdijWGt0O37hbcgWWPluMiqQeLXxrF6GN52C5cVXfY/n+Sh4C0GC6M3pQxoApopxNq1ch79RAaL2bUqHem6btCaMgVA28frjjImWLOR1VNApZC+sYTT+06gaq2d7EuxMZNZAODWqJSFAiSiUwhMIoK00js8C8mnGtyntv9r01/+KvxNG8xpvLNZFCYUwGhIOzfFp3Ydn+DmWuyYKwDsRgQSyVyj5l9royBeMN94/VsApPW+CeHY9kZhdnrH+i7Mk0AjE05jYyew66klg1GhWKxr3u2LeV6IEOLGEfw9FGFQhzM6GNpY0fVoBfrkdcxeZaFxg4Q4E5IIs7UxchZFs+LZnShaiDYNQ2kE1k+N1dsL5HhrMSTN3D/ddlXnn1hv/zKz7tvCDhJu8dZVWtxeDtzlEql3E2GsIWZV2oGmG12oumwVVfIqc68Gw9cFd33K4ja4ssJZGd+9ccdy7S2E/Wdt1Fa6tGd5UIPjhXFe7LZFDqFrgvI4uDX3KNBmrR3tIxAnnNYfvwDVjXgaqByUExu2QKGTE0TnngmAcDtTQT4tYaTJtzjkgO3lb20OloSR2hjb1csvaUnqK1FZsio8LQXITANvmYzNpoSJXgwJbaArUXAE14Ms0EUZZqVULZzl3iOI8GzFkSshqxXlbOmb23Qh9KakkPktkVhO58mQSz+tFkgUuqbMpCOoCczsFa1P4WMQL6phrjR4tWIcVs1kuonZZOC+nvSZrNRMXb9L2d+jB364XKl+wQC+DGSjKrMPFkplwat1SLBUeN5o3YeeyGbFYe72amVNnFYm3BZhv6DtPCbNXBVt7+3JRgPKsVwQyRXSUoBDXksVN9YjSZsKUmohhnby3JvS37/N2/Pu8M98MCYfcMHFPlMC48GhcuBiPvB09SO3p0bYYFsP+151ybWZwtZSQwEKVxOSwM6q3KYOL4i5r7Q1FhCsb7exRPXITVUaNCoDGJsg+Zazmx6Mh/X15m1pFTMwcKBSqRKAURZSVRWif0nz9rD9rHNpr49ocV4JfnYW7cTngeFJIph2hslBgIa6BFa1+FbNlpyDagNhskfyLfqB4uAwNuWK7W134ojcv/HCjPD/x/n30Nr7/xjJeu7tgP2dCfmHJCR7pZ529ncmdaTIFke53uKm3OCQN5A0U8Ho+MpTAwcV8nklRmGVhrM0i2D/1vlom5RE4l8vJ05GaaeGk4MoXMLpg0Uhwrt8WI9KpGz4hSOa4Ts0Sf70VXZbHttgdDU1sJ7nxgCNE6WptmiJBC5WpqnKSyloGlREi+kYSGLhFdHiD1xDfEZijW5hxMbcBgot0U/6rBr6W3PZtQF7NIiskCcIoGRDBUa+R/PHvM9bRwNS0cUmYpzduoSriqnNJETgMlJHQ1HVXJsqEt1fqeL5LMtbfwoD4yTU7JeDvTuaOjEYw1WGVaY7fasmotrNYGbYMBaEyL085Db2m2CC2cEcpxxgKFE99xTipe0fQ1urXw+dIGPwEzSW7KUKCNSk2uparK+DaUC7Vq2W+ygF17rYE5T+Q5cTolnlyceLqfeGk3swsrqsZde21/wy5mDmnlnfsDy2riCtLcTR5vGlZHQ1fZ1psGI9yvGVI0Dq46UGU3ZE+mrIUkYi11JWwjhy04+Ke1+8SS41wDd/NErYG5RC7HwEVaGUIlhUZtEIkU7+I07xYMPvcXn9EXFW7WiaUm5hK5HtwzMBQGyQgmXPH2esmSBg5h4TrOnvgKpzayamR0e4uPDW9z0w48L3vu6p4+jWwqHOvIGJwmL+dmrSHHDYXeNLB+qAX65XtYO0nQvXfau26kQsiCZFfxF9uYZHXggZOvO2x9q/r834ffK6BJTAuUQP7Ygn7Vwv/x6ptc72bWZqa20hpTrIawCub4vAvZFjm9dSJbd80U2uO28Jc2MLeBp+uBuzpyzCO5RUqzSqa0xFIipaZtBhdDZUyVFEzpBMw8NwSlamCuAzdlx30dWcpg4BcHvuQayC3R/MavNVr1V/su61GgKmGAEBsXu9UoBzG7UK5wyiO5v7ecnN5g1kRyCgY4AptlJaXtGsNFZthlxqGiau2nchooJwciBEXGRhgbwQNjEGWaDPCyH+z1qwpzSawZ1hx5sj/xaH8iOUIvhcJyGrhfJ47HkTInOCULelk2A9dOhH+hhbb1yC15Cuu5kssTZnM0qiE0B9DQSCcL9MPRqqDgXMEeUGN3jXjwUgoWCQpW4T0sOB5Wi75wvqQV3i9wBM4zs5Dt384nXK/sMc3dMVoyL0GSf6mB2vI68sy1eNc2cBhW9qkwSOGu7LjNE++cLpjzYJ2G9sCU2bPLODXSWLjcrZvRcp+7mvOEJWBnzqz9t/ZkpNmIojXjJ7beZn1w5ayi7Dw6ZT9mLoeVy8GSr10sHNLK4BnK0hKnmlhborpSTPfctD0gbC3f6vy+tSWm2JjdwNmYxY2LaD6B+5C3ZKISqQhNE4sOJBpvl0tu685FsC15fJzuuQwndt5rLxq4qztO6oK1fnSD7dzShy3QL9fDZKVsFbforRWHJGq1naeF4CajFs2aZ6SxeOvl4bynH8oLoDIVpexAriywXd+uvCWX1Jfg0XTiIq1OMIXRliEo5GYLMnjVJdsNZINtVChqYJW1RU45EaUP6q0irBKIIizaiGLaE83bqLUJxyURZUeuwjwlHo9H7utgqFaxSkN9441S2UXjLLU2oFLJzqUyTqSdM+07gWD9uP8/e/8Watu27vWhv6+UUmttrfXexxjzsm57u28nAWOMwctWwY2gIEgeJDmEJGACEogvIQSy8+L2IZg8GHxQ94u48YiCPvkgiiBKiBuFcEK8JMIRjnt71MSc5brNNccY/dJaq7WU8n3n4ftqbW2MOddca8213Gvtk1mhj95H7+1SW72U7/a/KBTrDjhJQiWRk7nXn1mILfmeqWYwJ81bViefG0iGvK/krExSKTREHQg05eY0hQFULihSV95xibNcWlSiDrJJxWkku2RUEtPogKB0mrgZnQbRzAFAO6lYTpws03LHet7a27JaaARAagNHrZdFv3y1gW2dpfkCLj3mWh1XO9nB/FxooxvLOmfQEcd8TNsScEoHl/fdsqSPCcgf15D7YdoENlWZ3F0oW0dPSFOHfLJAjPpj7CwIyTsmyWit0E6J837g5ubMfhx4tlswAvqvxu10xjrM3UXW13O35WxVGDLMS4hLZKVIp4uwH3RDPEuyGELIds+nUMdQElUSJalbF/UUSikQvYJoDfprty70DEtL7INiYUHUF3EMwBgjEzegXZWXxNcHiw6S+lxb2kgXWLQwpNCvBSbRmM0lXrXdhkAXLkLeT7pjUb9Hh1BOqOqdmbMWsrk2Xxa/R5xs3+lWggy/AubkMxDMD/O2GoXKLJuckxZYnUtXjcUY0KHFM1MxCGTwRnvYMvE40VsBEItSWqCdR3o37qeR957PpKKQfOI2ZmWXOiUEr1fZouhYobgM2fq6CVz+zFwVBPFFYW6u+dmdLs9KTJwG95up4V13MbsVjgukpIxdua977oaFMVWa5eD2eLV37i7CJgK7oTOnUFJZMq2JB4Z1JYboASc0KYu6WLdDvd19YhgXjm1k6eL0BglbFXOOhJA25C1itFqQqaKTUabOLjRGay8kgSeb0FYCUCLYQmiGdswSJKVaZkqNKbtxsJp/nsd5x1wHrxRNmVJ3pK0p51HR6gnPGlW3ZESuKBhr9RJKQCsyeFV9SQ7A8xmmsFEhNBCqFudUunlnYhRqDtHs6sRxQnz9kgpxCapRabzxN7bD96tm25bKOGYSowTL4vSOKGVNcPcOBVkSyWLeXn2W/FgT9WagauGwJjUkFh1QJ9o5uni7F/xnU5iXgmRQa6GW5C17pwolh9lyJRx/1eqUDJgy2KrpabQMrVsYRcfj49pRSWRRqmam4kR2IzEkrwSFcJA3F5x2fp6L8mvMMO1KfE4t+z2VB8RaSMq5J+FZBm6YGaSzE6VZogT6U8w/Z04KVnjsw+YbCK5IIwolD+xY1ypBacxtz2wuy7T6BzZNnPtnIJgf2m0V5dUCZfEFMyev2OL6dFJq+KylaE3JwgVBd3XvwJrb4ZWLGPVWqHfK9K8/8uzdIz/57EOeDWfemx5BHO050Bz+rBqtiGhXRKZHtC7WpfbK8xwCsjJr9q+eYt/NW5MWrcZldPPbJYdqS2hVqgMu51ZYSkUYIsw68nPpq4wa4RNm9Git1i7MS6EuCV3k6oDElo0yNnb7md3gMHLD1e6X+Jproc4Z7dm5f6Gwsiq7GE4it33n5sWJ/b7ybDpBtFCfloFzHXl6mMKVwQdbYgJDJw+d/W7eosLz6chu8LayHyfl9WniVN1kuLbMUxs4tgEDHs8DdZ443o8Xr8B19ijrHCpmdepKJaKyJUfpKjCp4IT74techbFssIyhGYrRJufylQrDvaFjgGtEXL1D36rg3qr21hxkzUPe9gBcH/PDWgXCVRCPZkLdeS5XHsEs0WdjNZruOVzZE67/qglbPKmoLTNpYm6FknoImhu9XdqtsrVxVr1YowydcVwQMZo6wX4qnX1xvqz7ba75rjkIBmOMud0g/QKk6qHO1F1e71wLVeM+9N1mSI3PHx55Pp7cxT01dlKZpDGlxnvpni6Zr84vuM977uuOhcyYOqdeSJLDePcSYLsmFhz8lsXRoTdp5r3yyJi8ouybgHan4wLWL+uBvgm8yvY9YRHYMicGntRNA142V2mw7dPgALo+egD9rAL8Id0CeZdiyL3p/iFbUij473UAbqAt7nDACjnXS9tr2y7FFXlR8r2h/2TP/LnMP/9C5v13Hzhr4Z3pyC41X+zUW4xJjIHmlifmsrNgiKykB9veAly3D2k8z87LGVPnsU7MOpAH5dwLSy8wVoaunKVQW3EXd/UQOttA10TtmZtx8bnJUMMrzDBRN/OMGDekvnEVM2fmMnDOA3XJPr9bV9sutLlw7Ik2NcbRDU3XClAGny7MGLVBk+ASBncNxXU9myBPcNI99TCwHDI3+4VpqBwG904r0jnPI+fzgLbsbdvF5d+0JsZ9ZRwb9/OeuTX2Yw3OlPH520dOdeT1ecfSCvUpsx8XSlYOY6MmI+fO6WmkzYPTZ9p6nVi4GXgAW2Hz67W1dgDWWZ5VHLSzojHV1fUZcFuhATR5W7StCM9z6EQ20OxoR+s4NYePBjJb/1mLmhACWIPJxz3nh3Fbg2BqsHsFbWe0vTAc3VGj7VKAZGKOl/zYyqrV+lTQKjw1GPeNcVoYizLkzs1hoVZlzoVec/BOI6B1oc0Dj5qYpso4evJWOzTdsSsBSNvaysIKdnNTW0GTMCYnjJcUtKGUaOrvPzf3JVwdVU515CtPdzzWkXemE8+GmZ4TGoHya/aC2zTzxekVz/XE67zjVb3hZCOjNE46Mqj6LD3ANy0cWjzxzDw1H0EsVng+HLmxypSqj3ZCdrGgvFuOIaYxOPYzLuJVF/SojgzfpYUsxot85qSjo03VqVxzL1HJ/mC3zwLgJ2zrvEGinblm6ls3A9biy21nQo0jL67puf5dgSDNXegP4moc7cY4/UTn+ftPfOHdV/xrdx/w+fGBXa40SxzbxKlP1FUlBXdbWFUgVj5goTnxVPrGBewGCwPnPvDhcutgle5tiLVd4nSpRNPC0zzSugti6wZWUUQE7SDFb9RTH6IF01m0YBj73Nwc14yTOhBGLVH7wGkeXT2nXUV+VoqCtytT8XbjqU6oQu+uxdgCOGNNfBajIC1an+pHRJPCCMOhc/P8xGFaXOYKt2Z6PI/Mp5G6hH6oihPCi89Qym59f+GmdO52500KShGelh0fPNxEO1SZxkbVgbnBUr1q7qfBQVItlIDsEsDc/sfBNwzyBjleFAe5xOW0Gt7qIFhRdwkZiFLRnyfdJd1Sh3IW8tEu+qHqbfutFX91LW/XrbiOKHg7Nde1jfirb1s/l4XPZlmgZaHeOMXFOS4CxYjRlMf+BJYdSZ2LMUyV3eBC1GpsCOLtGdvPGpWkcjgspOwpZw2bouf7E2N2ycAc1V+OZLBEApvCPsy/vOvR1McIzRpVC0NSzq1wbtBMKMk4DJ13phPPhzO7XANxrSGN2MgonUJOxpQbz+TMqB0GYe5nvj4/oyevVkXWe9srZg0OsQDvjU/sc0UMOoUWVCAHriSqFdqqQmyedKdNOMDVoo468ND323qwrl9bJb399IPdPguAn7AJ8gYM/PL7+J1d2qBrS0kkqsF2CYJ+2tfxdmRLG1dJOXxoHHadJQ18lWcs+8zdeNoUH9aeWl9nX5Yj8PlgW0KmqMXqtrLNuklInGUynUHaNvhuITNi5uoPTRK7YeZsI9qLX8zq+6vdeXHH88i8KKUUzkN3X8LiPmXHFko5cWW7Kj+omqM6B6NKCAwHypTuj1u00IdOzhKUhDjg3QE1NigUARXslN3Idj3gEWSYjT4Kx1cTduu+gCV3ehdXtxgBK3QxdM6bKo+Y0c4ZU6MMxnEpNN1zOy6UHNQJlBeHJ07LxLkWznNxjlbS4H6B7I1+LpgkNDlH1MS7B1ris1y3IUPX8xIor0ZNBmg0jM5Bck7mrdCwizI1NCfaqFD9Wrvm7mm6tFcvy05cswb5iAcF8TbrdRX6g16UvtvNuHRq1AxGozwK/dbCVik4oQKMTnnxJAikC/WcnSd3A8MQbiu5szOXH5vx68bWa1eBZJyOhTwoQ+nkopgoj/PIvkT3IJRhIlR4o9DinoIQrzB2acaShMv6EBy/COriKk2dRFXhm6cDvSfuRvcCfZ6fgvLi1mcAZsYkjS6OwpttoGnhWXkC9qSmbpGGj0DWM67ma8cH8y135cQhz0xJgwa5tnTdMNcp78EINvecccNed5Ef6K6jbAlZu1YhxP/2uftBbp8FwE/YzC5qEJsx6tU8ZVvQYuGgRxW4trDWTGeVbPIB3bYYqQj0zHkPvUz86OHEs/3Ms/HMITfUhNd9z0Ob4uJ0ZNWQFAvi6RCD6l1ShpBJky3rFPalctTJuTp12pTgBadKuFJEjljid5wRyis9qlacU2gSM6he6JoppdF6oeTOmBXCK7Ca83yWXlh6ojVX17e2kuDh0n/zL+3JFfLVg6h18ZmdCoiTjsmG3DU4Z+yYN+Stv07CTgM2qTsBZD9pPUANS82OtFt5R5b8AKxmq0GWXjGnTYvzuQTGoXOsE+c2OKhABFXdJKD8K4VKTXymGJH4NZSCEyrbXCpdXTcrv28NUOu+QFSHORKA9Xi1cKoPJ3sRc+sgdfTxCqpZr7O3u++Gd2Stx3UdAfhXW+Bbt0Rcy+EIUWY/bl080bDRgSS2U9g5apOeXM8XzwCcMtTYZ6Nkd1xxXpzSSnDyemS4OGgkB33HxAXcBZc884Pu54gk7tCS+ublt1LgO5kiDUnCTV5IGLeauW97pCrGjmqGias/dUuuUpQ8IHYyD3rgi8M975QTmU7HZ/2LDYypM6vP7KfSac3VaFRWKQs/ema63fezFXZpDseJFPe+xjrg64VKcq7wenVdScV1c9xQTsZoHZPCHDzEK9G2t4qIH9yV91kA/IRtW6ojuG3ZirH5kG0Z/LqQRwadIlFcA95169OyQ7eX54Y8r+T3Ft65O9ITfP184GXdb5qfYFsGOWSHCaoRF3CiRLnUzNGRCZcke+gDT23iK6dnnPrIqQ1b5rnCkJfmJPW5xiwsWo62CgDHZyV5S4i1XSLeXlIbsNzoBrUnhqxbtVt75ry4sowqISl1mTCZXX72StDnZqxVZCA/JRllalHlgh0z9nRpY/oi70HSpk5VIS2ZpbkmXavZg+/iwIS1jU1S0r6SsjEMjZzNM/m0mv52josL/z4eR2ovl+eaV34pKzkZrWXmRS6fsVisvh7wLVpolszbo2vVtV4bV/M3W1tzxcneOsVxWueGDdLJqQ9SoZyENEN+8tbndp0KH0ti335eD//Vdf39bkmt1/2qRrMG+tScL3td8F5//25ef/tujq41jPPnhOW50d5rzq81Y7ytDLvGYVzouKBEbXkTty+p887NI6N4RffYppCKzQ45y4o2tgCYikJ2StKQOs/3Z3eLKa7SkiNx9Mo6rmmMXaqb6azfWkbVxKNNZOnBjfM7viQPyDfFNZ3uyuKyhOJAGtPOTTlRqBSp7FmYpNJSoVrhg3bLUDqv2457PTgfuLvLim8SyZCjykep3JaFu3zkNjlJ/tpa7cyI4LSqy8DY72WL7x1hJw7QedAdEKbQlxsPX4Ek1rH0GQjmh3XbhGqB6Fxetrcz56sFR66eRrRJ30jFAxU4vgZthVYTH8yJmxdn2iFxM1XGdaYWETYBvbku5yCuMlEQ5nWgrj1I8QkNqaO7ciYdjJfLDS9lz1ObUE3brgx5nSX6wlpxi05rwUPql1YlIp4prohEM5fj1IGiPYxiZfMqm3In75TzMtBEaKLOv1sFo7eDdKnitoaxXI6vNZ+N5EHJgyK3io4L+ljcCqnFQVWBY4aemLuQd96WSiVErUnh+n5pndpxQEcNPni/2hXh3BwcMEjn7jBzXpTTPGDdkXQ92sNm/j6HG2VZjF6zO14Ug9xdS3YRh+G3SIQ0FF7Wm14ui/iq/kKDhAd5XX0LV91QMWROoQTkmqlLEoaTeWBZk7OrC/HqMt42+Zjffd+3CEy6vpGCFdcuzfXSuvw0rbCPBM9o+R6+agxPcD4X6ntKu1WW8xDoZjjsKvvSGLNSh84yKK1l/uUH7/Di5szd4cRNXtCcKMk4FeW8KLMUek+OSO5uHBRKbLw+7biZ3FBxX3w+t3r2XT66896G5ILZJdnlbwFoK2LclJkiyqADZ9FN3eWkrt27zzMZv+Q/aHecbeRsI++WR56lE7tU3d4pNR50x04WDrlyyAs7qbxqBx6XicW8QVvNK0JVgeaVZrOMcuaQZwZc8m1viyPS6Zxs9DbqKnxskMX9ThcbaJrZpcaIt4Hn+J2xOtL7/dP0B9t3+CwAfsK2BrbrVFPgDRAD+bJ4rWi6HIbsBl4BXgVAEzaNx/P7hrxo7N5/Ypo6Q27kYqHtV7Yhd8GDyq60TRm+JM/apgiIBdcGTbha+2Pf8Y3zLa/rnvtl3ESp+8bBIyrARGtRqYWkmBkO6HijXWmoZZ9rRgUIRioWfmTh6o5raQo+g9xmpD05AnRdCa9VlrcDc330/WDL0Cmjt620J2xJ6L33t7bgt56HyWDfN1BN7wmtmX6KinF9t9iptO+ksTOOjbEo41CjivVz0DTTujC3gfNSLsAgMcZBmcbK0tw6p7aCdc+oy64h2cjZ0JpYHt3eQUXIa9bMRT0EIqGO9qhmB2zYYOguMu0GaQnz3CVMYqsxPgr55Ma3myWSXg7LD7ytmWG5cX6eDrHgK5QnP45Jv83zv832dhBEoD4TTu+6lZSSSOcEu45J58XhzHu3T3xh/8DcC//y6RmvTgeOeKubEsmfJNfYTRq+gdHqEyiT05JyVm7GhWe7Ez96eM3zYVUJ8r64Ej6dwZW93lPvErl5tZL8HopAVOSCDp2yi0w/Lyem5CQo1/cVWrg5K64WddQpHBjgGUdOZDLKLjdMZjrCQ9rRtNDFiffgGKFBlGfFfRK/OL3mNp+5SSGDZomX/Yajjhz76LO/ILiv9xJRJYq4HikGR5tY1E16dfv8fpIMNuDPD3L7LAB+wiarygiXhWq9ybbzadeP94VsHTO9rQKzxR4FK8p4NuSotK9N2ItK3wMTTvAylx8TWZUUXDGixBzeTOgC3Ypzi0Q2cqkI1A436UzLjiZ8rDvOYc7abfUk88vS0Wr5av98eG7rTq+9LLPgL7JVcV2FnoyU8SCaYRh84RAcKFKyIYNXK9qSHyB589hsR/dK20uCP9IXf7wUv3XkproOqKxoULlUVcdE6wOkqBjNSGPHWooZZNyoycEwYu54vSp5TMld2LIoS5gDZ+nsBqMlJ/SrJZaaWOrkPm2YA24Qd2QQP8eKB7Vys6A5YznRSnaN2SaXDkK0SS2OgazHXg3OawdBYlbptAqp/qs2emDVbJTZxdnXQLhdl9/FNf/93jRoGuDgEyt+7badbS3fvLCCKz/VtiagbSQEKIzplVeW9ZnSs/+Oc+KDl3c8zSMvDzueTTPvTkeejWcelon7ec9pKczthpvRkcRDdpukFwfluIwOSNF0NfYw5iXzgRyoPfFsPPFiOMXp8nMzihtXa+iARvqDF6zeOiyh+GIRXAB20rjNCwc5YwK3aeZOGs9zY0Y5q8+4zzpw0pEP9YYHnbhpM1O65TbNSEBV1Bzs9jwfybvGh9WT47k7epVQNmpqfHPZI4PSkrBP3h/xfTBS6pxt3HRH16Uh450W1opSxBXoxDsd1TyB7lENOP5AqJ9VgD+8m9q6JL21iKyBYg2EsV2Is1wEkNfHrC+QYkFrib7rtOfG9KwxjM0DRVSKOUERF7TN2OZAngNo4m/lGWNVgZAyykk56cRj3/Fq2XO/TJzr4ICUej2I9v1VE7Rn19jsOYJcfLi1Bbo9IbK9JKuIi2+rgkU3GFzuqaRO2WTRCo1oP8brrQChN7e1JeiVpavtr2fA378nsMVbndKdDL8+1xrITYNRPVCs5PmavGJ8exKWzJ20Xd3Yq7rSOZQFJfGUCo/L6myRNwV/CYFER+jlrXLeXrZ0druKJEfwtVqw4gokQabyboH6CmHh0bfyBk08adGd+mM1qr8OeUkuz6ceOPLswtYpwEKWY3ndFuhvcXH/CmyCu1O0g6AD6CTxuUMvN2gKPgv73t4HcS3UuhfqHtqtU4zaTmCv2KTkVfs1Q7WBhyY8tN1Wcb17OHFumafFAU9TaS46oaHuIoAkSvF5fE4wJOV2ajwfF54HeE0QbsvMIM0TVTKLhsIMzpPNMUPrtvLiBhRxrm/y26ybK7AMWfni+Jr38wO3eebzaeGLqXEEvqnCyQqvdM836jNe9lsedM/RjPt+A7BVorMNPNrIq3bgpBMgpLQGo0xmYZc7n5+eeJaP3KQFwVxn1NwDcLaRGoouaVuH/G4eU2eUipg7QZy1IAZNQmN4I8FDVXewcB3jH1wQ/CwAfsImclHX3Cq/b7WgxIO2P1/RXq6fbwL1FtJdZf9rnjzwTYolB2GMubFPlUOpmMhljmDOB9JQrneQTXBvBFpP3OuOZi7gfL/sONaJubmQdA2RXu0OdrFIv01XnL5GlRvoyO3zvh3+JdqYduWV5kHBsivV1ORBr2QLLz/Q7q9l62uv0eJqOCVJ2d/OfhxKc2COJW8/aqIveNszqicT1wKVSEMN4ByGo4qXH91Yndm3TCZ50IluJl1daWPKTvytmnhsA+dl4LQMbuy7HpLIbBxRur5m/DG7c/duWrxF1ST0GCP4hfegWXJaw1oBViAClxVzEMwUB7cDswf3tLjdDw3yk7s+OPk9ug4RmMssqDg38LpFyFs//6veDOgZNG4Caeb6qLp2E3zfc72cnk8TCA2/hJcbqM+M5X2lhTKM7Drl0JCYBxsegPblzLNxYczdbYU00cxIIuyGJRxRQMy8EqRTcd3Mbt6CtA63xQEohzwj5lXUKMbSs2uPatoshQTjRT6RcO5uJaGSKVbYSWWxRDMniCcxxrRwm87cpJlMp8YCcieNB+tUM/aS4nZ0OsXeCp/Pbtv1YbvhSSe+WQ/h4p449TFk00JBypQisE8LP7J7xS5VhO72ZjbQJTHQ2aeZSSrP8pGMC19UMmcdWKy4DJp5tTlbYdbMfZs4tZHHOnqXQn3meEl5PMH/DATzQ7opazUUv3hrbPWxq8qFP86mUha/smh/lCcwLSx6i33xDOOZcaiIONdvNl8kDsXNV9lql7VqErpd0KE13iaLN0stK7eD/9b9wjJqira8tdLEnNy+tT77tVP1ShX4pKNzXRkSAteORK0m2NB9HihexZVRaaHgshHi12MYgcR64vQ4ofuKJZhKI6XGUNwOaUmJVgWTzpphuBZvtBNDt9HO2TUg89qD4TID9L5TUB7AwgLmlQZd45C4HRdejDOn5Pv+dJ6CHL3usM9/SBKu92m9YOhkzvPkc8Wh03sU0jcVnQd0iaVefZ8suXjzqhrkWByBOcGkWAH2BtU/QkqBpzsYLI4CldDD9PxFaHsjNcFyEOSvkJ6/0stM7iCzB3rdeZvSsouUr1lhJcx663e/n1tOU2F8cmqSWELeNZY7F1eoS3GPuuJE96UXXp8OqCWeTzP7UpmyB7YhdeZeOLWBZt6OXN1WxqAmtUjM1ODVsgsHhsT705Fn6eSmslE5Dqmzo3Lu3jZ82W84pIUbmdmnhkln0E4lkzXTMap1qhU6iQfdO3WpR/cB4Zdb4kv5zIs0s5hiYnyp3HPQRhHlQfdg8N7wwDM7c0gL32y3vO57BuuYJnpSxsCSN0ucdOR/P77H53ePTtvIMR4JakWzzCiNwdMZdrmxo3JICzPuBFMpmAk7GkP2/tQgfuye2sR8tX5JoEv3pX7rk/srsH0WAD9h25KSt+/G69/bW9/BkW4B+75+vCXQZMyfV+S9xr/2Y1/ndn92tffI0NaHD8nFqduVX9Y6ClqLKDNxdXVbIcWuLfhUR8514PE0Bg1BPPhZ0A9Wjt8bZe3bH/L6g33S4946MGpQXGewL8IqHmwtOHh6/VqXn9Oo5Knx7HBmP7VoAbmZ6HlxGbW2FG9nzjEI7YDJNkMTEsHIRZbr/bQ3gUhr42b9XYahKNNUydlYNPP14y1zLcxLYTXwJI7/ReLK2O+b20Pp2uJ1A1NJOMy+Z9dXPYcKzfUxX79FYLWksMOJ/7se8yyBxRGsaUnkWShP5u4Hi0+SLAt9iv1TNoFop1y8mcX8SlaA2xWjIEkuwu8NyglS9dZv6nzkVvpO93NNLNteaHvh/EJp70B7pjCau3qMffN4/OKzB57vztzk8NOTzj5XSnJy+H2d+OrxjpIdoALOfauaNgm+lcmnhMKdJsbkbi1DMqbUGWicdOC+Hzj3Eo7olefFEabP8plRnNLgLcrEQ99z1oGHvgPp3i6VzpQaz8sREF73AwepvDbhKdqmzRIf9lvudc9933OXzvxIeckrPfCgA1+pL3joex6qg1JauMNYyFjtcmefFr64u+e2zIzSGcN2ra+VGo33yiM/Ul6yE3ee/qAfeNlv+Fp7xk2ukYrjtmt15L4feF13PLUpRDzCozQS+psys3vbwflXePssAH7SFlXCR27EtyujN9faLfBdq3usRUgqxs3SGV81vql3nN4bubk7cZhqZFt+szXNrqogTsZ20Mqlx7pCiTHbXKa7Ocen0BhF3Ex2GahWvF1oss2ZJKoj629/gOvPdcXr0E/60Fw+pIHOaZOLkpAWkWyAD/k3StDVph3SnDjJSG2JaXRPviKd3QA5dZastFTQnGAO0v5aORmxNAUB+WPOywrs8c7uVSYxu97pN5c7jjczY+mMpZIG9fetA61fEhEzSMmiOjdakNFzUrom5uq31coppBh9Z/SsPr9cK0nz9qxlb3uia0tU8NXUDXspCjsXIUAEzYk8G2kRpz2s3Qb8euslTsXkYggmtgXFX+ltbd+Xo7mqzQSa3drHEFIyrHJxVuFbXo3fcjMgLUYuxvRKSGbkWagvoNx1rDsYa8jK43mkd1jGxM2wMGQJx4POkJR9qvzozStezXvmPrCYWx6VEL22kMNz0oJXiJ3E1453nFrhqRaejzP75NSDUSqSOs3cff6+7TwhNfMgmAwPY8ZOZkheOR3VhaLdcUX5l8tznqczu7zwjX7Lve64TR5EBeMgiweY1DnaxC8vX+QgMwOdHxu+ydd5xsCe123PHM4xq18gZsya+er8jOf9yLNy2tDdu1QjSMNDn/jn/X3eL0+MUjmwYBkmFj7UGxYrNMsMIrxTnsii7NPM63Tg1J02AZDFGFLbpOB+kNtnAfATNlvhvUCsPb593B161QJdnSAsuoprEBSgpUzZN+Qnznzp/de8t3sEvJI7R9ulW9qU4C+qLrq6MG26fE1la8V0c+PZ2gvHZeS8uPqK9gu9YQW1mK079QlboD2laAQvf452c0cG/aQcXbYBkEbL8dtWjpagKHlw3l0KK5dz84Wjthi8F3XSfLYwKF6bwx/z+nZ5fVkJ9sXYZAnXrXgrMo3qCYgZ87JnqfmjxykCnQc8Yxo6u1Id7t0yKYJgW6kRCm0pjn6taWvJvjHyWMueDJoNBkXW6mVQrAv6NCCaovILib4SQjnt8nlF8XZZWucq4Q5hv/Ltz7c/nlhYN4kjdr9f6jNi+LHIQn0u1DtcQ3VntCI8vz1zs5/JSbkbZl5MR6bUHaCxAsks09X5dsc20igslhHckUWSV321rvfn+sn8XiwozTIpFFXONlHbQI6kr+NuKUJHxDjkxm329mTCqJZo3LC0wqNOnrTG689WeCeqVN8fDxyN4mbR5l+LFo42cbZCxkKUOvOoOzeubpO3KnuOKtaxBCLwfDiHMbAyRhA+hOG2Ra2YgJu8OGhIGkebeNQdD7pnMbdX26XOgcpLbkDFATPi/OB9ulyoRTq77OjYz0AwP6SbJLmo/MBlHvit1v5rfmC6dLtMvPXZ74x0aHzuR15ScqWeMq9lYjc0lu5ySk3d6LZrDvCAzyBy6q74H2OtrimI6Dm+J87NHdOd/4bz0rq49mHs17bbQTH4+M21E6edtwRztm21Oj5Orh+4IkI/AltYK0G7xB8/epe/f2QzJHcEJ/MvNft7BjxcE15FaUK1QOneFszd27lXJ0muP5NcXh+7OieKzwcTSO7ksSPJ/c5qTdQmsTAokK8oixpO3Y7IRYylC+dl8rcS6GFuqupVprYLKtPkMhQ2k5hZxosXn1mu9jnWbENM9mMJY11Fs8CYrkyG/SXTSp6XGEN3oHlVqcKli/Atzvi/6iVIiEuuX/2C760la4QNUoE+uLJSu+2M78/sDp0ydspUKVnZS2VXKrfljCqcdKBdoZKTKFN2BYFdnjn3zCBuj7R0l8irLWZXXJ637onbC8FjHWgGU2qMSYDkwhCpMdL4kfElN3LmVmaK+dzxUXfMlnnqI6fuvLkaSXCWzvv5kedp5eUZJxupOiEINbiA3l9JjFTOVjjqCPhYZJDKTsS5qXQWKe7GEPfxKNVJ6rZQUo3Wbqf7JclOFnapsacCxoONHNVl1Y46sJARjKaZo43Mlh0LoIki6mT61BwFap7Up+Tr3NI/U4L5od3sehH/pOpv3dYAtWbcsS6v1Ln8BGqFL3/1Pd790mvef3aPJHdwnpJSJTT+bLUY8lKlmwe8bBZAl3Wc5Wogqp7RlWyY5c312eNetD0jMHzridD1XwQ0scwD466TSmUoRkrG8OLEMhdOx5Fe81ut0bfLmu98s5poDDye4Ga/UEqN42cM5gr6rkrf6C1TD2DnsiFRDffZs2gTr6237fVjWCQNbCMoGaYZbZAmbzWWULRXlQuh8+ozWSQbDSg5dFmTowhrc31E19eM9lJoQmqK3vh1x2e1VGuCry0Cg4NrRMC686nyTYUl0zWRNKEzpEBRWhIXgQ5dT93kSfD3XoP/JuP2Mafo0ln/VxYIP/K29vFXHm8/7tu8VjmDjn4cytGgJObXO9K4YPtOGsTbeckZcYsNMf+rG0Jz7gWzQjNlSgslGS/GM09tDN9HVzAZslEVens7bIu7QfTJT4J4R0LpYV5tnDTRpPB/zu/xxfE1h9KY8plJOnupPNkEuAJLxe2QGpluia/1FywcSYPxTnlinx6Zzbl/KXisS7Q1DDjIQk7GUUfM9YTY5U5KFcEoyZGtc3ex6qNOqDRyd+eXJDOPukfSmQGlMbCYt6sPsjBKR0VoJtylM6aJe91DIEYNYcaNpZtlZiuOvYsMTME9EK/J9D+g7bMA+L1uV3fx5sR9ld2u3T3dQXtmtPcr77x4Ih8qr/uOdB5D89OrgmYJVTfHXMmy0bj01pHACvnomtzfqydaT655qQmtsrXa1v6rrAOgdHmvyyzuaknJIMnbbyl7JZiSz7wO48JcB05rQNU31S2+l3w+TW6O++7dkd3QXEUer8IOQ8VM+ObTAe2FWjNaQ2By3YXgXYpFEFyPklxa0K60AlK8zTjeVPLgEalkdQeAoZHEeH3chTXUJQim5Gohd7uzV+BhJOyVaSQYhvvHmQfCFbQkaw8cvCSrglRxk1wMRtBJL+CeLIAj/PQ8YIu3T7UYeREXz+64E0AEuqQe4PMs5GqUIyQTf7sb0CLRL/SdSh1SN9IcFaR9fHz8Xrfr11yFP1L7mMCX2HRDU2Uz6hXeDNDb1SYwPxfn/E1Gv4PlC5W7Fyfubs/sh4UpO4ikhkhEEnNUY3jtzdEOFAgZP2GfFk46MIZB86DmFkK4YnnXtAkdrJ9wyJ2pdO7GM1NyOlMiKsvUuS0zz8uRF+WJm7QwpUqncOyZD/WW+77nq8tz983THIpPRjIY88I+1xC/3keSnDjbEOoxQUTHW7rr9bDLFTUH2E10bpmRIR5nmWMf+WC5dYAPwi5UpRIXYv6Plpc8zyduZAmFGzjawMkG7m3Py37DN9otN7JQRHk0R8XOWnhZDxx14vosXgPKqibeGU6fVYC/GrfthnyryrCr3wlcyPELrtX4tczD+Zbz7cLubmYcm1vqbCWLf2XpIV2WolXhw8Uk4gou8fghNQRXNEkZ2tq266t6vW07LEGwZQ2iKZaSVZsz9j3j4o3eBnQ+m1lCdaRk43Y3MyRlmQvzeXCFle0Tf8rjGZy5e3acxs5h54azmMTMAp7vTpyHyjwUzvNIqwnN2WeBWdwsNxwSNl2V9YRIMLHWikuFJhkbhDw1ukiAhJyDdTPN1OZzvaU5ElQVas28bAfGoZGTMpVK656Bq6YIfN4m074mH0AKrZe8RmM/ZtrNuY1VkNcJJucC+h9dlFwGg11zJO2SaMnIcyBDg1+ZIsA7NUYcaFKMFMbM3oK04AteqkdNIYbccHWZ79Nc7mPP8Zqs4IFO9I3Lc7v8pUWxLGyKNm/v0xoEx0cjVYM7gWTsvpxZTjtePiucn5/YT5WxZMbsgKTHNpCbMWYno3sgyjRNzJqodeJYB/alMkhDslKlkCRdZvEoSy/UfnE5WHpGgFe642ao7EzcU09gUeGhjdQuLJq5zTNHLdykhUEaN+lMsk4ZGx+2Wx7ajpOOVEtkUU5a+D/P7wSCdOYmeyt0otLlIkuWRF1qT7w1quqAnWwWQVOQINdnOoc886Wp8dB2PPWR13ViTIUxZWYd6Fn45/I+7+sT7+ZH3k1nxlS5ZXFxDlEkKVNZeNlvOepAwdczMeXFAFNvPLSRFjNCi33tJhRRng/Hf0VX23e2fRYAv5PtY1aE6ywU/D8SVeAb7dI1xoyC7oT0xZnxtrlCSkosfXCOlDqZfR18r8HzetjuPzkHbZXgaz3TWqL3q6C3RbPLjuXBK7pSFFWhtXyZD647GQosOSuHnZOEc3aDXQlxX1XhWEe6ZuZ5uHDgvqdl098/7Yybm4Vn+xOrsebK7zaDp2V0YromUnYtVElCz+ZGs03gVDwJUQ8ERlAgRoOxB4AHyEKelN3BifcrJWLMnV2u7sQdUPFN7jA+4jB4ZfA0j6Gi49XZao100TW9HJPrwIsSWp5CmmWrWnWHn4/FgthpMIbqTjbSpFhROBasRnMr6DZ9YLNBktlpBuCVYt05+rLtol0o/vd8diUZFjdIztcOJ9/D2fzYsxsxv++FNnpQTkvwFCMI9gFXjCkSVAn7xP1IBi1D2wn9Rmg3ifZupTzr3NydmUbXpVUyT9UDVknGWCqL+ijB1Vd8MQdXf1JxTqh9TGs4i1eJRHKYsC1/VBNuhsbtuLDL1ekQqW5V1Zgbu9w45DODGNUKs43uTGGZV+3Afdvz1CeaRfs6rLN2uXngCAuktaZyrl1nlyo7WdinSgnu3ut+4Bv1jhpz7G45dERhHzPJSnG9U1V6skBq+is3Eu+VJz6XX/O5cuJGOoeYo8868y8ZUE182O940B3NchwHWHTgrAPHNrgd2RvIM+M2z3xhevBj+1kL9Idze6Nt9dZmb/9nzWTlo4/TDKhhSamvB1pL5EMlF71UY6wLaPDmrsRG/fq4BLWu2VtriiMidXV4x+XDsoNmZIWNWtiy5A37Rc7NfcFUYl4VFVMARJbq8O8kzk9L4siwUxtiMYeSG4rPprad+1SbkUpH1NAuPJwmhqLkrCjGLjD8075xLyOnNrI0nyuQOy0ntDm/iakh8ypbFluyi+XA0Dc0bK2J/jgxTJ3bw5kiiikcrVCScjOemUrl1dOeajmoJsLp7MdgU/Dsl/O3XgAX09WrtnBA/aWG/Flf27V+qtPJKRGaxSXQOi5QMHXX0FwNcbPTWLTYG96Tcg4u/WC057ANnyVajwZpiWsyJNlYW7BNkGJbK3Tdvh9L03p7aIIW1a0OQlqgj6tKEFsLVsLqqWeXO/hW9Ah/LOTZaNVAOrkZQ1fOJxd6L8WtriRSy6qJugwMeUVWKy3mUEN0YlblGi+mVsFB2RDeUowxQ9XCqbnMlydrnXPLvBjdDmifaiSO/rdVAuyVHphS27w7q+Xg5626oNXvSYRMp0jbjmFTmJKyiznfookUifKDTtz3Ay2Sr7kPVBNmzTzp6J0B/LqdxVmOBXUusYCE59lZ3URbFb6Rb4EvcrQP+fH8CjVll4yTFVKsUi/yk3N2A9F5MhcegMRN6byQo+MYKCTUAUFZ6Qqzls9aoD+028ekgB+ZW6x/Ey7gl+35/vgUCh/6kN3VAMVaoZtXZA7RX2WzLoCV65HaOsNbpc/WmLjOAtHL8xR/zSEpZa1url5wlBb6luun0TfeUzXRBWrPMRdRVvPLu2nh3LxabTZRa7rs5Efy5e9867MH9VMt3AZpWaNNeGrCrjSG1Hl3f+apKg/LxNIKasKYFM1GyuqUAwSxjKwKKCZOQs/dq6psEZwSlqB1uD/uuJkqh2mJ4+UK/SkZ79weOc4TT+fRj4NF+7AntMdxX79Yq0WJ/6bLjJKQbZO1LQqi8qZ9UXfHiNAr8PfSDJPAFPuPYuPqAp+2609vIJ/AqjuSGOYBZooAGLQcWU2bh0i6FBdiT0KxN8W0ry7B722zcEk5w3wr6OQV3/AEw/HSUZEONkIboCyeBKTLS/j+X32XDsMJ5BWYZJZRmOvAuDdSDgqC87Yv9xCJ2g2VTkqe6LmBg/M+S/JWToqbTFnbn249lem0nkjZffmWHoCSnlhU+OB8Q9rDvizsszu4rDqYLVrs7tmg8fp+MViI667KKwhUE3JkThYhx1BXjsHFsg3HDkyiGIZa4WQDZwbONnLSwWUFSdt+iLmPoQvqO+q8E50MhI5w3/e0U6buElPyC+JH5BGxhbvUEBJzfuJkhUE6iziNa58qGui0ozotY58qN+m8nUencAknHT+rAH9Yt487LWs7Z2tvKm86cF91v65NQHUE3Qs9+2JsJNLYaebaeLYaqF4NjP2mvbzuG1ssktbljZ1LyVz0N9k2YLm08HzBW2pxEEfz6tFULu9lbAaeJXvu2zXTTHjomaVmlqXQa8J6KLJ89AhdfYar4PgtaRfGsO+M+8rtbmEo7oHm1a8rq5Tkti6nVuhcEoUVldlVaKcBOxfSqkAjCgMwGGnfkGJIUjTQmiTdxMmn4vJP5za49dRQGZPTMl6d947yMwlPOXe1MF15fXJlICxBh1m/49QMAyLYSQeJ+d1FxcY/SzI2/mkSQUNZx+VOQknmnEizkBcf6kqQ+vNZSGdvpdZnTguwqbsTugp0IT1l8iykI6TZyNXbjalCmQMYc1VxrZXH9Vn9NJt4vkG9ESjesUjNqyod/DGaPVBbhvHB5dHezjjf3o+EF8XLndDvjHpnDJP64TchC0Eh8vO7yy5Q/biMdMv0Toi2G2KrSMPl/vGWp1eBJYXLiYEmn+c9NU+KmmZKUu6mM+9PR94bn3h3fGIQb5dXzVRzZGQOIv2ihcXK9slK2Jy16klNAm7KwvN84gvjK/ZSmVLjkBYWK3xQb3mlB85hU7QEF7BHp6Jv7L21Ar6kECaJszoVosgqiVZoJJaew5HCz9VT27PbV+5SZR8C2Q9a+Bf9hq/VZ3y1vuCkI+5Gajz0Hac4qYJxSC5qUfVabhFOfeC+7j+rAH9Yt+3G/7ib8CoddddpNgL89jhdA4p/FXVB43pwsEOvIGMQzZMhqXtQIdBS5ln8NZLxeh9EcEL4dQvWoM1CLomIIaTkFIZ1K6WTVBFx5GgXeSMQOsJTmBfnFY5jI2cfnE/FK8JFBnozupgHgpAlu6xYxpvLJ5cs4SPLqFBnJ+33Kky7xm6o5Chu5papKTH3xJQ7d8NMQTnlIZRuwEQY9hUdOv1UsJpcUaVHomAJBnN5rGxYaptAQK9wsmFToBmKca6ZnoQlZXbFDYqf8sBcR5aakWKodie4I06UXj9/SGatJ8k0glTyxMJkReV6IJB+OXSXitXbm6l7S1wzHswzMCiaAhE6J3eHB3pUVal6q3P8EPptolfQg0I29M6wktAi6JCwk3OykviiXhafzW3KMfrRoPPdbhKXgyiMr4w+uUuDjY5f0hQzwR66pR3q3j9LnkMq7Vu0Zdc26OErjnotD5n5c4nlRabfJsZ920BFgjFbZsgeqJpmavcxgBLnhxQjCMhm7mqyJiPdaShJvKuSpXNTFsbUGKRz7oWHeaL2zEMdua8jL4YTt8VBKwONRROQydIZRDnIHOLanmwesrtIPPQdS7xOV+HUC+8NTzzLJ2oWCsY7+ZHRdhQ6yZSzOfF+seISiuZ1o7+2J9phYBQdnTDajk7LQCNLIiXXIm2aeGoDX9Fn/GL7N/jX91/nJ8Zv8uPjhxxS5UfSA7tBuUszX12ecW8HTjpSpHOTOos6leOpj4Eq9cxq9Tvtlni57D/lVfX92T4LgJ+4yeXfWAEsfpbr9Pj64VfdS4sEzBLYEJJXg5OsVxKqNb8wV8j3x7z9BUl69X9740Fe2aTibcBVqcTtlewj1aNG+8EQNgPDjdKwbn6j73aVoXjGelpGliWzzGWbPW5OC7GAkC5kbskebCTppV1YV1PcNz+oiJHGxm7XOOyW7S+u8OmtQ6VwrF4BznXg8Ty4mW8Xen1LJ9Q8MaEYjErZN4apkrNiKkG2d6a5iCcI3i52sePbqbLLbasKH+eJ8+wybT6nFTSUXWyt+DZqiX9fAwgtrJgC/LJJnsXjt+tr+8xrtW6buLpEkrI+N3Uhnb2FSo/2YswDdQ/zjXnQG5W87w70SUY7FaxBfixurLuEOsuymuqGSkt8HBu81Zq+D5KNotBvheUGVi8dMdvAY5Y90Led2yVJNdZGxrcKvuvv++jJWzsIWtRncuEAvxs6+6GyywtjiBisakqnnlmrpBQnQbf73pzHJ7a5t3cTajgqNHP06BJ8XeKey+KAl5xAJfGoh03blpjErYbWh7xwl8/c5SNFXBHmVbvBSHyzHzaD3efDmUP2YLtLnYHO19szXvYDHy43LHhAWa+lZt66rercwnWEoSZBy/EHFrGtNbzKK7ZQxVk/18mEL+weSMmTpBMjg3W+qjd8o93x/13e46SjK1IF2rRFZRurG9UK9aoDNGvmm8uBV+fD935hfQ/bZwHwE7YtyK2bXbLhjwS+Nx92+d36uEAeUt1N3d1wxNX+DbfHSVw89tZy4GMEHDe1EJybtuIs1sxVEUox1Nh8x1Y8nbcMLxmxafK5Ih0s+2IempktwdNxZBrdZnwd6JfS6c0NLkkxk5RAp+J0jJwbYkIunaZCTw5S0byCRd6cHZq4e3ofEqdzYRxdpHiNld3Egy7+IVWdAoIISy9IzDGtxMAnToLEDHNKlWLdrVyysEvqlkZxU5aQxiJUO8Rch7SgHIoy7Bv3qXOuxTlkzU+W1hxtzPUCubQ+zUKyTMzpDP3qcVdt7nWo+yZ9JoLf6g5hft1so9rmjgpZvQIizIgZHASTTElNsVGxGnPiaENnNfqhO6Ki52jJOiDFzJORy255QFyfHlTKT7X14p8rnXHH++zVcB9Ak20I6hwOFm3wKrc8XQSzv1UgTLPBBNOH5se/etu+V2g18+7dIzJmxrGzk5mpNBd71uxqJuFcPqQWUP1L8OgRFLZ7Js5hkU7JjSEluiaW4NOZGY/LCOYUiENpZPom7GCW6OpIzEUTRwaqHjjkyqIFMUWsc5dPnG3EzHhZ95z7wCGfmXVgUQmqqLFPM5gxW9kqScHQrQUfl+TaUWJdQ9RVX+Lvq1E2gIg7OTTzWfg/e3yPD+cDXx6f86O7V4xSuUszxzYx2MLRCo9totnAuWfvOkGIcuQt6K6An6qFYx14WMZPeTV9f7bPAuAnbKsd0tsx6O0WjEeijz5/m99xaZvKaiYbz7vA5n1hN11dCi7tNLhUcZdqzi9yEaOUS1Bc4fyqQgn3o5I0KBVpU16wTakkArFdr67x+Wsmje4SPRT/JCbhMb0GsDVDz0DygJeLhviwo1Fvs3obZxw4H0eqDm/OLgGaA1KWZpShk8RopOBr+crYVKk9o5LICVoKtZsEtlJINpqDhfGsu3LPvTDuKodddYHrXlw6Tq+CYPY5jwXczxD2pTHmTlUHBN2niVMdwwHCaNmoc0GabMovG4AXc1WXqxmrO9dHRXhV2cj6z3WrL1yfdDvxV9X8wDZbFBWkGWWR6DQ4NUAngWzkyc2FMdCq9LGQlsi2kuuGWsGDbXLyvBnbDFuHsCuav7d2aGnA7NWaTtEKDkRxUtnuIRugm1FOIE3QydwDcblcntfvv95f4wMs2avs3ATOoKnQsvDh4w12m5iKMufCQRq70jjkE5hx1pHHPnLqA84GdV3YWTOnNoSlmANUdM1NkZgNeqt0NL9Oak9kfLEfLFPVs4bEVffG4KnvuMkLI51BUghJd86MZIHZJo59JEnhucwkWegM3GtiJzOzZc428qQ7Zi1b5boelBwuJWoSM/Wrv5urvviMU8kIyZS5uQ2Tmt/rfsl6i/h126OSqVZ4Ppx4KX1Tkjm2gYYnHVUvyNjRiapUvRjiNhXu5x3384TaZ0owP7Tb2x7i/rvLz9eYjk1aU9gkMk3ie4gcW3ajUsur8Sk+/8vBVUvR64xWYio+jE/RokuiDule3wOoLYSzr1qYSdyY1TUrG2NRxtTo5gozx2XyxbtFW7Jdf8L1U3pvrnchZWGphdbA1KtEEYNoq01jYxrdwignh5eX7FYzaxKgFFKH5RRAjjXdv+pxKQbJ/cbGVNmVzpg6HQfinOp4mV0kZTc05urZppr5HFIMdooUc0FoICXl5nBmKAEpN3Ex3uJO9lXfDHQpGftUuR0XnpcTT32kqbB0iXPRg0Np9OpzPF1XNuPSFu5Aw5GMLQKhWiRUtgXBbbsOfnhgggiEUeV5S/0KqWl+fXUDJrBi1OcdDp3h2bKteb0K1jI8FCfRH0FmgxoVZBes24Y+1YxTL4BUhS62BZpPu6nAfAeWLQS8JdqfLspgauQuyCnmognaHkrQRnqOy+VKIeb6sLW9o0cxb9n2lpCT04UOhxNjqbw7HjmUhVGWOG+u2zmlxj7NaHHFmBaIycc28s5wJPnV6X6A5ojlpMYSiM1Tc2PYasJ+6GQc/DGmTqFR1imcENVlJuFAkG7Cg+zcJb0XD8RtAISbYeYmLdyIS7O10BaFW9R8ZtlJIO4qcSPnzVH+sU+uuWmJRPeOzdUxM0ss5rxGMw/YLrwRWrj4/HAQl4jLyU2wX9Y9H9ZDaBfnAPIoXQtPraA9hYyjL4TNYsZsINEUtWhPZ7HPQDA/vJu9GfiuAg9cBb30Vvi4ipIW8xRf4/2XusSLRe/SwOW5tkpyXRjioshX9PjYgbwujkNHzejqczbDq78eE40qGWuJnoSxdKcTZIdtn3NhrgMtORhmW8DX5UUdjFOX4iCYpFhyIv1l7uWoUlUJdRQnBnfNDquXjuAzkXQwhkF5fJxY5kLvl5nFisas5+Kzon7D7W5hPyzsAgX6YnfiVAfmXgKlBs/2J+Zh4JwHlmI+YwwUqGQPhCDcP+3ZTZXWE/upMaRGMkOTS4g1y7SaGIsrhMya6cvE3DM3ZeGQF/Ku81R3jgbEWJJzEVvLDuao1xeCXL4lc8Hu7tw/jI1m8EZG9XYFGM7prMn72oZsUbkPXPwP105Fg+FlQhehVSHdNtLYyYNhudOTuTdhyXASmENIZwHLgiy20SSkRTAcQIrQ5GJc+9an/LabEbnJh065qHtBhyiBk7eNN1BXRFox3y/NuIhENqzxBkDn+g2Gk/+tVqEdcBPhQ6I1eK13zE8jy/ORzz174J3dkc5CZ0FNXL4sNQyhJA+CnUwZVlCJOxoMKJN1lESTxGSdAacULDowpsypjzRN3LeJyQo1Z3Y0B8skb6unpNFeTczdkcdJlCEZN6G0MlvhsU7UXjiVgbviyjF+b0flZJDRCK/wZJPvkzTuykyzxiQukD33EkjMlXohEdQjGOHzetF0kVgLruKihQGlJBfGWMF5khXRzqwuGHEojZoy0o3aS3S71tbqBXuwrqOfGeL+EG9bhbfGnYgLa9Bb/+YP/uhzt+AoeGuqGH0wGECLYZNCMfK+bW3D60QoJWOIyqQkZVi/J1epr5o4LiNLd2fyEv57Q+nRgzefdZS6Sae5vFnnoJWHNJGS8dh2pI1x7DMMC6shyU5IlwTG6h8GZTByQMoFXDEmyMXPd2d2xa1P3KRXeFwmTsvIw+uDi2jj7TZJynSzINnogcpMYnzu5uiSawEjXzTxMB84t4GussHTlz668WzL3gZt4mhJMdLgQByR4FsmYzf68UzigsBY49SHmJf6imoGd6ODYHLyqvB+2bliR888LA6IOZ2GoILgkcIkAtIa5FyWTZYIZivwBS6WTAFqsdCouz7/m7/hRrFY/5ENUKvFKzX8I/usZxR0ZwzPK3nnBGztQXs5DjC7rdK6LykyuxSqQJrBJjYKj6irsuQGuX66KnCN7boTD6hE23MtK8UrTele3a73Wd95q9TNfwM1u75eusoZhA10JhKo2RJtY3POHofO85sj7+yO3A0zu9SYUmWfPUiUa+/N4vnpY98xmCIZplTZpcVJ7Li82EPb8cFyy0PfocCQFaXxqCNmmXOghFeIzSjKIc2cbPRRZdDsTV2F5ayF+2UXLUvlnfHEvlTG3DnqyKkfXCQI5aYslOThcJRKQXk+nBike6WKz9uSGDeycJdPTvQ3vy9nLXyw3HHfdjzWiTloETnu224wJmXMlS/sHrgpSxj9erv4qU3UnjhHYK09bQE2Jz+Wp5avzv7lu2CU3Pnc4elTXE3fv+2zAPgJm6zVmf8H2/5zAfu91Xa/6o/GN4sb1dzQdF3sHP4ukDu2REaWhRzE+HXeoyo08axJzaH5VWRrc+xKJUunJBf4JZqEAy0qUePcipPic98UXxRhVyqmRrox5lqozfUDNdAVpi6t1kmIuig2YogjeGjN92MormpxyAsixrm59NKQG+BtxiLejr25O/ocsBbX7RSlzoWU1edUGDl3Xp72LEFLGLO6fFOuoJ4ZLyFinIjMeXB1ZRVDg5+oS0ZKJ2X3e8up8zhPmM3sipFTg2TcJWXpOTiZngmfW+GxllgUo1JXmGtmoNOlY6NRa6G1IDWrRLUm3lIM0IcMLlK9giDWwLfStERjFqYXePqaOInaRpHY5sDRulsRKWuitRVEBixQP5you07adVJcV7JvaEr0nF1yLLseaIl5X27REo3ONI5/oheQwd8rR/v10wTCfHbx7T5C37nqjeWYNRVHfWq66pAvMT5IK4gmjkt/sxW6JajdATGDebCseBXTF0E/HPm6PmOuhXcPR97bPXLI0aWQhCRjEL+GM0aTxLOizOrC2cVCRnC1yBK3F1rNX+/r5KAVhUNeqMGPqipOo7CBpm6Btk818hmlqgcQJWFqHPIcVWTmg/MNL2XPPi9MxU17V2rDfd1xV05kUd+nBC/rIQJtDcUYt4C6SecNyDMGoujEwDQtmL1Lss5j3znPNvwORXxe10T4YL6h0CC7RdPzcmKfKq/rjkzn1bInJ8ckLD2zNEExplwxUoiJR8KVHCx3Oy58fn//Ka6i79/2WQD8hG1drFbQyjZ7y169rOhniHaoXRYG47JgGWs1KTA44MCiEiSLE9cH3Sq4zfVB1GdqyRjyxRDXxFFkGvwh79lLZJ+hap+M/eBE7tWRQLedMoaYNw7FmLsPvMtgmHnF0Ju3BC3IwVLkasUTDA2ahSvGTEOHJDzbnZlyWydc23su6hDp2n3IbiKQxIPj0MmDUxBU4bwM3EyVlH1hBgmx4hKu0yFObRLoNs+wJflduwKBAOgpKgVjqQNDXoCLU8OuNLLAlDuzuvku+KK5k87ci0uv9RyO4MLciicMS/GK822S5kpd2FZrD4QpuFkmho2Xx5l62zH1OFHiEmn2lh/veh1uhaDF4wYuwBvz69bymsonehW6RmhdzZGTg2VscgRml6gqFb8uuby3qVdniNMk0qc08b66fChdyEdoI/TJwqnC555J2Bzidf1sVyCgrWi8Yu5c7jkXGEgWyFF16D49U7OSJVPJdEkc++T3TVeG4Wnjqe2StxAFY7FCZmAWr9j2UpnEJ4QzI9WgS/YqNXnik5Nx7q6KAjDGLHyIeT5I0AZWQJmDa6omlpbDBokIRH6PVy1QLTpAypQbU+48tB3Phpkp1TDRVQZpnHTHfU+MqfE8n9mlxpfGV9ylE4sVOhkr8Kh7Run876fP8dT3ATz2/XIvUuWshSkrJx15Pszs08xD39OT8Xw8O9iGxMvznqbZq+jkvqQtWqN5++zOn3x//8Tn9o8hGP5pUqnvz/ZZAPykLXOZ/XHV0lwVK9aFbpWy6tEyiuzZJB6XjT4aOho2GuzUXb8HbxsOY/R8MFr3GymnCCHdq5wl+BLrRdQ2/c1YMCJYjqKM2duPYm7YagFlFdwax8xne3MPFCSufKIQqiqurOIzBh/OaHf+0lA6Q1GmsloMKLvc2Q2VXWpuYAuR+Sa/mdTboCUr49ioS45V1R3epXTXNQV69UB2qoXOxFMdtoq49VXU93LDXMO2U/GWaqvZAR9dQNSrsKgUEa8mRZXPH+5J4uTo5qZyELDvWYWunrGflkLtrnmqfRUeZxMO8P2wj0Qr686ho7mLu4q5c/mgLs6dHRBjSyIhLlGawLJ6e3zt7WkoxfRLEiYJX+VH81U+m3/eCLLeb4xgd/bz73E6Ls7iKBMVJ9MbtrU+vcxja886GtNIS4Bk+Ejz49Ip+TabRJKo3Wg3LozdDoQGKgxPwTtc/EVTjY9UvHL0FvOl0XLNjY2Blic83StbktFGg113ey8sHD4SRxkwYMoLpzYyDY0k4teDXboLWZSBhpp3EmbLW6tUo9JUBUHBNJJTv5dLcPZUXWOzbV2LVT9WwlUiUaPFfq5jmPU6ghuBnJyWgHkAUcU1TFPi1bKnc/DP1jOSXN1llxq35cx+OHGbjoxUPuw3vq6I8th33Pc9X55fcOxDgFG8qm3qajIkpx89LCNfHF9RUuVry63bKbWJGoCex2VAkrKXhWMfad37Z7fDzI/dvdyS9yRutZQS7NLCIdcfKAjmu6b0fPnLX+Y/+U/+E9577z32+z2/4Tf8Bv7+3//73/Lxf/tv/21E5CNfX/3qV9943J/6U3+Kn/zJn2S32/Hbf/tv5+/+3b/7sa9nZvw7/86/g4jwV//qX/1ud/+72jalKy7zhk36rHHxUCtXs5g1q1+DY/iu5eqLYJ4FTgmWjNVC79lBJJHdl0Autu4ZVNfk5pGxM46eSuHQIBjZq0CNwb1lpxmIzxZSZF9BmqCrV0uIMObOWPzLfTxj0F+6z8p2jTyuZCJfTFt3i6BTdc5REgeQnNvg0kokMk4cHpJS4uebYWFXKruhcnd75uZ2ISXFeqIHsT4JlMHh2a1m5nnkNI8efKzEtZO2JOD6nomCkpRhGDtlasgY5XjMBlvLnE4jj/PE/bLnnz28x6vlwJSUF8OZF+OZfV4cuZdgyO7zths609A9i82OziVByrHsr9HgmtooQPaEyEZF916RSRPSkkhhZ2QisFf0oOhOHbmqgoRLxEbnKOZKNtmccrK+T4uL08RJ/1OP5OryeAII5BlZcv1QjccPRr9R+o3Rb83pCasYaTZsMNoN1FtYnjvJfgUT2tXXd7t8CTAcjfHJGO9d8UW6+xbOz2F5BjpGrD4b5WTuFDF55fpGdyXO/woESg3yYuxeGtNL2H0g5NcZeyocH3Y8PO356sMzXp32PNaJr56e8/XlGV9fnvGqHTj1yTsNuHxZEWOSFuLZIVMfXYcsypQrL4Yjz8uZ58OZZ8PMTXEPPzMHwzhwK22Ue3dg9+XXaRROSh+zshsW79yAdx7iawk5tVMPygFu6Lts6E5fF1Qzcx94XXd8sNzxj59+lF8+f4l/Ud9HMAZpmCV20niRj/zE7pt8af+ad6cnDqX6582OwDYFNX/ff/L0ef7JwxcYpXNXZu4GN/QdkvLO7sRN8c7PrjRuRvcHrJr5P16/w/2y83Me1ettPrOL2esPcvuuKsCXL1/yMz/zM/zu3/27+Rt/42/wuc99jn/yT/4J77zzzrd97i/90i/x7Nmz7f+f//znt5//0l/6S/zsz/4sv/ALv8Bv/+2/nZ//+Z/n9/7e38sv/dIvvfE4gJ//+Z//FcsWLAuBMPZAFwuaZudGWZYIcpe5CbBavV3AL9noE9iIZ/ajQrkAXjR858xwHpvhC2xRUunk7FYla48dzDNP2AAvYk59yGLcjjMlWfCVJNqf3jKsPVBg5lXkKjidxD3S1GQLutqzz9OiD5zCFT4lJ7sbkLNyN8x8fv/ATakMdBZ8ZnJqI0/mwbKb3/TnOjCfR86n4koxxed367xz1ff0dqgTzltfFeNXWbdOirbmqm8Ka5fMtgBvGn3OpFvbWjLk5HJw7+1PPB/PLmishac2ctaRczhLaMxCVsUP1091k9yLlZRXflv78AodS1AfpAqpyaW9OJq7lY9euel8BaAZQIvP7bYKca3kYvPrQsm5+1wvFEg0FG7WY9hrdv3Q85rJbXXTxk0k2ptSxU1ok/Pu1raqtLBOqsbwFNXgVSv2e7kT2w0c3xW3gVpl++oawDyIrYAYNd8HeVtFaOsJs+UiiNPV+07oO1jeM/TGYN/Z7SvTbuHdmxM3w8LtMPNsmDkkD1iI89pONmE42R1c91ODH3f91op461ILzXIEpMKxTTxURxEPSTnZeKWFaRsQK63Am/WYRDXl2ZQyZN3ah0N2pOrtsDDlFqAnHw+cuwtez93tjHLwWM9d2e8qJx15rXuOdULMOOrEbIVjGznqyFMbwyE+R+BPl/01D4J3w8x705GX7ZZTHzY5s6ppo08gPhI51gERGFPj33jxDd6ZzhsH0ikWyiEtG/DsB7V9VwHwj/2xP8aP/diP8ef//J/ffvdTP/VT39FzP//5z/PixYuP/duf+BN/gj/4B/8g/+l/+p8C8Au/8Av89b/+1/lzf+7P8Yf+0B/aHvcP/+E/5I//8T/O3//7f58vfelL382uf7ot+HuirkixKnms+o2Yt1tcWBk/mtGigVgozqBZyN3oyZcMs4Qt4nNAw2dX67ay7hUf3HfXbZQUSisrLzBaWbULWWWrpjQpr+eJXWkU6Zv/6sq3yeIQbjFXuDd0a+V4RecBdiqVJSZ5TR19oIFwlBIrUgj3LinxteMt701H90HL3VsweaGqcFvU2yLNZxJWHJ7fWkHV+Vop+Wdb/Qp7dzCL9atFTSCFxUOWHqolEIOvEGHxY4FBHvXKLsoDSWvCIpnMwH2aaF24G2eG1HlnPDL1xqOMAULwZCAnJZNIyVhEQbLPUPCK6hJX1kqZq+iwAjiCyrI6vp+8TWDZtWAtdSiyfV5b3J7IA7duLewsGgRyf6+cQ0XH/L3GoYXfY8KKJzpM6lyHdf637m/soxYLOy0hdfNzrGyAkz4Y9iyCSrnQDVYk6qcJgua3D7uXRr0NcvwgW6LZdq50U+ZAnrq7znWsu7zQ9c/RdRGD4dFFEPZfgeV9b68vjkzig36gHhLnmqlTYhkcqLHL1akKZuEe75SDJC7msBq6bmIW4r2VHKRwMfXFPc9BLXB39K6JixkRzM27J2kLACvoze8Rd2eQSLyiZWoEt3Wkq3sE7vMMItSUeawTKhKO7J64lgT/8vSMhzbxzfnAO8OJXV7YpYaZo0dVhJyVowwc2/iGnnsP8QwMXi8T/6/lC94pKY2BhkkJrVRD+xow3Y2+WmaXKt843TC3zPPxzN3g91o2r6bzR3URf0W37yoA/rW/9tf4vb/39/If/Af/AX/n7/wdfvRHf5T//D//z/mDf/APftvn/sbf+BuZ55l/69/6t/gjf+SP8DM/8zMALMvCP/gH/4Cf+7mf2x6bUuL3/J7fw//8P//P2++OxyO///f/fv7Un/pTfPGLX/y27zfPM/M8b/+/v//u0UYqAXRJ5gCFlRycQ9dzTejUkOaLxtYWhc1+JldvmfCUaC+6z20CSUkXbHG5DwlU4IYUTL4oacwhVHPMOMzHWwHltxzyX+BtFTHP3pIjsbbKFG+/dF2h2WvF5TMgJ6t6FufKF64gsarVpAwpr+axwlQ6U2kMSbmbHKW2jxZKVUfR5WQsbWDurqax9OKtnMVZ1nnwmeJqCQVGLkbORutGr/mNCqjpwDhVcjamsmCW3CQ3nDSG7AG04ifPVEjFkaurAHUPiSsl8d70xO1Q6SacdQiXcKUFOi8l36cyNFJIgKgltBvbihzHZ5vZQVSF/ru0Bj0FCTEERm9rSnDhrEa1WgyykgaLmVUEIvUkIZXONLq7gWq4e4dBcldvUfv58aDnXntrBSh8JFzFrywHCMf8utV01eosDihBhNzcM3CtAj/tlnC7o9P7Qn0GlsIdo/m4IC8wnKICXN9rHT6+tdlHf+VoUnWrpX4IGkJxOTkVIRf/LknoVlhUsdzIUlEyFSOZMKBbNUUoCnnyE7P3yHnWCmh1ZHjqro5ybn5t2vW1sQY7sxhhrGbYAYjRhCob+K1kf/8a6kmDc3Y2u6bbYfbOT5n5xnzH+Tw42Cy6PlPpXN49kfrONU5D7abHfb4R4NduefxNcb5uVW9vPrYdLxcPrkPqG2l+yk62b5YDX+Adp+fjzI8eXnMTnD8z7+R4O7b/6gHB/LN/9s/403/6T/OzP/uz/OE//If5e3/v7/Ff/pf/JeM48gf+wB/42Od86Utf4hd+4Rf46Z/+aeZ55s/+2T/L7/pdv4v/5X/5X/jNv/k388EHH9B75wtf+MIbz/vCF77AP/7H/3j7/3/1X/1X/I7f8Tv4d//df/c72tf//r//7/lv/9v/9rv5eB/dxLAi0I02GJuwdWZzLkqGz2GaQVuH4hHMGsiMt5K6uaTTkqCKz3EIFYS1d2N42yv5QmjRFrMktEWiBRl5ZCzoZra95+ZObeaWd/am8G2PwfaafYPP6XKqG8IR/AaUuDAlqdvERKstizIMnZtxZsydQ1AguiYKLRQlJKon4dQyZk7TdWRbBO5Qjkk4LDqLbo4VrUdrVq+1M/17yp2UXNszoywmjKVtLd4eVRvm/L9h5y2msTSWluk9U0pjSJVfs3/pkHBTbsJm5jV7BGXWRBGo6ooc3nJWplJJYjw0z7aN6N2taXMkQOEA6hJp68JdQJO3v8lKLs2vJxUkdciQS+x30eAv+mdPor6QmavgnNuIiLIbF3pPqPoilcPLSNWtfkRx0911QLYl3Gv//XK5a1LYexCUhqvEqAtmE0CvPgipvokE/TTtUAOWvd83MvuTc4N8hLIYUr2lHPit64J6e9Pr3AN5szULbDqs6STkRz9XvRhNlCcGaheOZeRpHNjnkWVKvC6Ta8Hi1/tA36rvHoliEXfQEFeD8Os4gpEpUSlaBCCjNgJVSZjz+rXSV8J5nAMzrwDNHAi2yiJ2M3IE2bkmzrlwqpm7aebF6B86Yxx74WEZPAHsKcBocK4ZM1ecOaXCPlfemY5E+PUqVgzVguFqL1k0FNYTTc0DpApLm/zYRqcop8KYlXenJ2YtPNXsYvsB2HpRTvzY/pu0DjW54ICKH6+Cd6N+1SjBqCo//dM/zR/9o38UgN/0m34T/+gf/SN+4Rd+4VsGwF/7a38tv/bX/trt/7/jd/wO/uk//af8yT/5J/mLf/Evfkfv+9f+2l/jF3/xF/nf/rf/7Tve15/7uZ/jZ3/2Z7f/39/f82M/9mPf8fPXzVKgyoSQ2rrckK7T6CdPk2tdS4v26GotNLFB3IfXzmuqN6ATfuGtGBP8tc0k5iGu32hZoCakgHWX3FqBfFiKhnpHEGqCggVCzCvJnC7a9imqxqae/VqoMnQTSjhIdHUSa1EhSSOlTI3WjKojFaW54oSN1ekWpSICL+stt5y5zTNjVpI03h1PPLaJFW8lAjMuKK3RDmph/S34DHMclKLGIkbqhbpcqtDeMguJBxVudjO7oWG4RmhbgTS5uWA1kVkLLGSGooxDp7bMqU78ow+/xE/cveTX3L6K9qrxzvDEPo+MqfN62fHYHNLuXmeeuIh0nt2eOS8j89lotWBtXaLtig8YF9GVAgzIVu11cI7eep7N0bYpJ5rCUMBwBZ6UoFkKMQTjrpypPbO04ujfHG2zgCqnwWfDcxro4f6NJGw1w307ZAXlYjPCHSJ49rUL4UCYFegznHxe97EuJt/hNt27fJngyi19APYg4oLdK43hW23XgdeIxBQuCkp4C3VFs6Ym1FbQF4l6W32hHl0UfRm8M/FsdADLmF08YqFQxKsczFvsiwnZlEEcKJKjmjqUi39gDjrHk7gT+9wcEd26xCxbY3avNAs5w7gfEFwlScCWRC4Jks97kcTSoduOqq5n+3yauR1mpqR8fn/km2ejI5zbsLUvXUAi04t3P6plno1n9rni7qQgqfnPAnMrVEIII/ma0Uh0W/VF/ULo3TVxv9ZvuR0X3t8feVwmjB1Ly7xcDvyvL3+Mf/3um+zKazSMeAt+3F63X0V2SF/60pf4N//Nf/ON3/26X/fr+Mt/+S9/V2/6237bb+N/+p/+JwDef/99cs587Wtfe+MxX/va17ZW5y/+4i/yT//pP/3IDPHf//f/fX7n7/yd/O2//bc/8h7TNDFN03e1Xx+3SUQ8E+i3dkF6EjdVzCjSOeYiIV8lgRYl2gmOFPU5VjkLFpWhd6bW6tJbY2Bo9jbHatpKVImSLOaB/jWUdoHGxw00hKO6h7fLAqXiFVJKDnVeBdZSGHFuSiiEeWUdnHqwegVy2Y/baeF28mH8BgkX4bFO8ZpQNfFYJx6rAwBWJZV1yVqh0SX7sL8k9YF6T9QAm7QWiMX1ORly6dwdztxOM0Py9tAS+oNVEw+nHbUV1zFNTqwfw+rovAyxAHV+3btf58dvX3KXz0ypMVJ51Q5A4jV7Opn7eeftUrt8fjPnFC4105fiajBd4suvATHxDsCVnNnaPWBUODSG0YXDAa5tq0TM+ZShAuTn11tMAhzbwLEOnNrAzbiQxTjWgZxsU+Dpmng4rVqQa5UUlWDobm5hYr12xFGfCKSzA2PKHCCZxRiOHlBWd4b1wrq+xr7z+yrO/eyITxCGkzGcYLi3N173W9UGlzmcG+1a8gRzJeqvW2mhkT6CjZH4aUJ7pnVPkuY6cCoDcxvo+yPUHas+pr+L8+8GUQ6DI4U1NZoVF6IQRS3x1Eee+sRDHTnVkaW7BFnTROuXJHCdG6/AL/CqEjz4+XWmSJao8OWN5zUxait+zVvhoU6IwP15R9sSoctRXIFwzYSlK9O+07RQxc2nl6hGY8UDia6HXKgCU+lkqZxbuGc0vy8WjF2BhyXx1cVl4Nb9PeSF3/m5f8bndk8hg+Z4BDV40pFXv5oC4M/8zM/wS7/0S2/87pd/+Zf5iZ/4ie/qTf/hP/yHG4hlHEd+y2/5Lfytv/W3+Pf+vX8P8Erzb/2tv8V/8V/8FwD8oT/0h/jP/rP/7I3X+A2/4TfwJ//kn+T3/b7f912993ezrcoFZn7zpDBYXflcEDPCwVBk81V7wyFe44JfgphbPbteZyyyknzXOV0NGLzhbdBAoq5VoWpyWTIzVH0umLMjQGM8z9ISKcmm27fa2/iwfuUfAdHStLV1SArivWe3VgiVmZE5uHAOWhEezhNLyxzGhZuxhqyYoZK4X3aha9iZciWJ8lRHzmbsB9cITMkXBDPoCpBoQSLOolCMJIkkyavFqKBUodXE/WnHUjO3uzNj8ffKYm7oeThxXgZOi1eavSVmXYFEjVXt///z6n0e5oEfv33Ju9ORKadQrgAblGTKcFN5udxyrA5mWK+MnBu7Sali1CXTltVXzpMcwsnBsrcdt0U8EiN7yrQm6Ngpo1eBa7JVRJlrQnWgF5+7pGS0yLyLNHbZlXaWXqgtMaTQYQ2bHEG53Z2Z00DOjWUpzo/MyWXuwmh3vcrtalaMgo6eaDUJKo25T58RDIpzIDb7p68AJe6t/Tedq9cOQivQX7xZYX7sdvWmCuSjI1c1C21wOsymaWowvoZ8gvM7sDwXWi3ojYNf0s6r5d4zaiOnZeB2ckEHp7qAWfIqLnXURval0ZK4w3yyrVe7T7Mjm6XymDrHNpBk4MSArNfyFRBpbSWaJXr313G4kYf+1nwkkoSgKq374wnLaSnM1YUoxtyYSqVoj45IDgnvOE4mWLz/155ueD5ldqWwz83HEKYoKxhO2aeOklFz6gQ4InoqlazdxQBacUeIZdgwCWM2Gj5XTKL8P7/+k3zpcM+P3bzm2XBCEhul42vn20959Xx/tu8qAK5zuD/6R/8o/+F/+B/yd//u3+XP/Jk/w5/5M39me8zP/dzP8eUvf5m/8Bf+AuC0hZ/6qZ/i1//6X8/5fObP/tk/yy/+4i/yP/wP/8P2nJ/92Z/lD/yBP8BP//RP89t+22/j53/+53l6etpQoV/84hc/Fvjy4z/+498xCvVTbeGbR2SWNkXQWgcQPaq+hpuLVg9wSf1vubIR4lO5jIescgmgMS/cREOKoFmd+5XxVtrG1pRtZijbUF0iGKZNO9QzNQ1pr6ieIp2+uClcVDWGkEZaB/VdhZKMSTpLcx17DXkVU18Nc1L24+IKMBD8KE8EPHvMPDVXw1iaD8Zd6aLEfNAz69WMNosHcScGy6UlJB64uKJjSPIh+jQ1pkGZUotWj5Lswn3M2YEG/j5elaqGrU1KvChnnu8XvrB74nPDayqFc8z8jrrjoe35xvmGx2VEt5MQiDwJAnPQI7Y57gVBgGgkGsWRlgwaHQEjjT3Uf7qDfpLD3IljeBg6t+M5eKErbN6vl6c6soQ7RhJjV+rm9LEfGmPqJFGObWRJYEGcc0FsdR3a5jxE1grbuHQhEi64bU6XcKd2IVenJgxHpyl8q8rsu9mS+S7YIO4E0c2Da/v2z90qRHMebhsFciBkz5fqcHt8d+BNa37PadBitGesG5Kca5f3C+c2Ogiq4SILoa2r5uAPowW/1hjC7Vywza3BAjiSorLLydy5ZWsfXjYHOcWjjUj2JOb8MfrI0VW6PCsuNSOVsGHSHC4bl+o+ydZY3e5xD56JY/NAbsBTnaIReukEVS1Oj0qdKXcGcfDV3F2v1Mzng61JCGgIy9UeihhPbeLX3N7zk89eMuVOo2AKT33kZT3w9eOzXz0gmN/6W38rf+Wv/BV+7ud+jv/uv/vv+Kmf+il+/ud/nv/4P/6Pt8d85Stf4V/8i3+x/X9ZFv7r//q/5stf/jKHw4F/+9/+t/kf/8f/kd/9u3/39pj/6D/6j/jGN77Bf/Pf/Dd89atf5Tf+xt/I3/ybf/MjwJhf6W0LdLE4SMOHa3JV3SnIQoAefOEj0GxrF8J8bb5+Yf+7I+p9dlFi3YyrfMvIV3msUOYgexVE8kC7gnHCnmFTXfEbMdq3a8VHZJwW7SMzSBYZ6SVTXBFnS8su1WsBhDFvx2qgux7nkaqdwzBjlKgwlTG5OnyLlkeSCB8mkdk6JHyl5ycJFKgazSIo4oNOyUqzgqZ+acOqiwEvVThRqFmcQJzd5DSJ8ZQnhjJyf9zR1kBlBJneM9rDcCZro3f4wO4oqXO2gcc2svRE7f4+u1yp6rQHxZU8qiVy6vSUXJc1CbYkP1drQInWJ8mC0tCREohC82ze5e50OwZZlCE39kNoReJWVmbCrCkEh4UW+yZiHGvZWlWnpVCmHnqMmSSd3bgwjm6d1Xt2G6ycUDIkdQcNAwkwFdUXXTAsZTR5xyNluUgAZr6tSe13sql4ICpP5u4cV/fM6k/4SX1Q8QvWW59m3ubE54nGVSBd7+MKUn32JqpYtEp9tNB55+bIfmjcjmfG3Cjh2uDozkRJnV1yg1vMjZQ9afE5ucuYCUUaQ04sXch0urppszj80/V2rz6F2fUtaJsOL/gaISqBuPO/r0EjJVAt5NyZBhe+dxCPK8U4ytvn/CvNolsY1ZL4xvlAESen56RB1k/cjWdu8uzo83iuXH3mm3IGjNb9euiROK6m3GZCzrDLldkSv3z/OZ6NbkS89IxJ4hvHAx+cDj9QEIyYXa18/3+83d/f8/z5c16/fv0GIf+Ttt/1x/8ffOXpMRRhYuBwLW4eqL/UhNSiZdMvZF4xNlHfEOHwAHKFJLVEwM6jhTMYbTL3dst2pS5ibN55wQ1L2QNEKatKScwpcmcsLVxm1hXFA5vI5XRLVDMCm7qKbVWi/9yiaptbYV4GWvMlLxdlHBpj8a9d6QzZdTUT3pI0xFVsQtOwqZNrz0vZiOZeNHkQWAm/rmqzzkb8Zmo907vzIjFI2dhPlf20eNsnOa9oCrLwkJRFM/fLyP15z2mJeWbMW0RgKo0v3j7wf3v2DX5y/01u8sJZBx77jtd9x6v5wDfmG16d9yy6StFdZjhNE0vN1FZYlozWHCjf5BVUuyQvNhhMioTu60qDyXH+hqEx5FV6yw1Wb8aZXRCms/gF18N77lQHjm1gaXk7btFEJYuyL5Ucree5DRH8/by3kHOr1R3trXo1aGsAXCvYLsgipCDJp8Vbn+UIw5N5FfgWGvQ73a4XHRPok7f0cowK3tjk6jnf4k2MSyLZx6jGewTpK+FuTQ68md9T5s919JlBccSnJEcZP7858+7hiWfTzD5XxugwuNqRoyl32d1ChtSZwuYo4UClpa8BM4eWrM9s3RFlCBUYQmTCP9Qq5XZ9zbuyWiw2McogXc6jP3Xt5jhPeBw6+3HmZmibk0qziwJUXwPilhCyjUpSXHertOKhVG7L7MFRdLu+xMzVn7TwtIw81ImnZeTcBldt6rJ9ppTgZpz50u09L3YnkhjHNvDB8ZbXy47zMvD//r//ke/4uvk06/gnbZ9pgX7CtnL6PPa5TQwR1CQG7Wlm4y+tqLV1BghswW+1alm/Ez39rfUYpCIdHWloFm2ouOi9knB/O1mVQIIcn6KCKMkFqsfSQ33ed2G9qfxnQtKJTSptynXL5M8RJHoQ45smTnWgtkKtF0DAGrCm0t1wN7cLAk78BlnUyfaDKOdWUHMlmBVBloJaMeYeVZDrhyKEsklw21YE6vr+4iooJgTAIFNS59l0dnm31GmaeKwjx2XiHGAe1cuCA8o7hxN3uzPvTieebMf9sue+7Tn2kdfVZbJez5O3gcql1Vukc6yu1r/0Qm8ZPReoCZYUnFBfuGzvqi8kkKJMu7pV+L74KM8P56C0uDj3mLvnOWsLjFVtZKCqq2wsPTNXV/3o7brtpOwGV7YxPFG4yfMmdLD0jJnRwmB3rRDc5M0rD+kOgJHuFAhp3tovJ5csG54uyd56NL/bLNoAnYQeODXp/rof2dZ7Z30S6/3jrX//uwc8b4OytaJFDE1sPtMWz7UCy/Pkz5uVm7sjh5szn795DBEHB7WIwLGPPLbdBiIR4HaYuS0L74yPTOLjhrMOYSjrc8HJGksqZIwP5xsel4mnebxcfZu04SXgWY97dY30th5Zn5Gs/13n95LUKVMY+13lZlz43OHJ78WN45c25xQ1Nk/AvrozmNF6oeFLkGXh2XTikBu7XHlnPHrQ6qN3ZQxPAsjeSSnKZI2Hebf5/5m59ZZki7Zw5l8eX/DlpxdvnNp5KUH7+FVCg/i/3NZtE7q24osA+XIjYYEsaysPyDMqETa7FmCrFmVtw2zZHhv5PVVvLZbuQbAPFzkqW1/DvMVmK9k+Oxk6h7yX3wqKmcsvrXM+YnGNPXQi9zrLMmNumZKNhLcv1dRRa/H3/bD4rEq82lFN1CCoa4ebaUGLsSsO1VbxSvSQexCEE1Nky0OqnKu7Kywhbj23TElCyat7RYjxRrktQAs0g3Z3sXcbIieoD9ndwl+zY26Fm3FmEOW2zIypsyuV+/OOuQ4s7ZKBfP3hhloTx3ngi4d7no8nDnnZ2r5FHMTzuEwsmv00mjBHwD0MSqKzMCAHpS8FTQlbMtY8gFAFeoapRxuzBOglKh8SL5927MfKVPqWQY/F9Rq1syUWo3SvUgblJCNZHITQNw6nL6inZWDIfZPRUtYK3w1XhYyMRk1Kq0pN4aXY15Y52ORB0L34vL9a8XaXJhhOQpqjYvsUYh6CtyKzesVmAssNF8PdaLi8oTG+BsP1hvDWxaUyNE9IbQBLLq4tIthkW5JKh+EBnv8SzO8J9R3hLBN6TtRz5p3bE/txZlpBZeKN7w3ghPFQR7p5d+PFcGLKC6N0snSG5DSDGVecKXS+tHvJIR24Lzten3fUVawgyUXkwdiC9np/XzKLNZONbHnt1kQb1RDO54I2Ya6Z5/szh1KZSiOJMiYLKyRhCsH6TKdq2SgNsi5IZjzOIzq4xFkz2JfGJA0THwGM0lA61TJD6twUg8MTh2Hx+4yMiKNsexWOfaAUJ/SDB/m6+iT+gPuPnwXAT9jc0BSioU5c037zRqVXzh4Yr12qt1xmrfDi57USXIU5uPq+fln2VlBCfPgdReD2+IQ7KOQQZo65gARab8jqFZXoBVQSvdctgRbbCNOrgsPqe7dqGyaMbBYCJomlBgo0stacjVw6u6kxDp33did2pYLBqQ/MPXM3LIx5iczTf5cSJFmgjjFrTFulI+IC1FNZyOJzimOdOC4DWosHv5USISFKTaJ2X7SzGBJi2ikZT9VFiJdWsE3HUbYsdTc0ZDC+cPPIe9MTzTKPfeLUB17WA6+XiSWGSTl5mxljo3OcaqGudIjTgM1RAWq0EAlE6N7VfySrUx+i7bk6AeyKE51z8nM35bqBXzaKCV7lZMxNVA1Oy0iPwLyulhJt7pUTmcTYDW2Dnp/aSG/CEhV9r8k1U20VZwCyeit3iWow2vy5Q2oOUsnfQ/Bb95YE9SBOTRCjnMWJ8fEYEzbnlXrwRCgtnoxaYuP76TpHF9w+ab0/8WOXFkHVAh17iSHjvT952FXK5xZe3J24Gy9mzotmb1u2gctdbdFeNp4PPifcp+b3SMgLTtI4yMI36y1fb3u+9nTH/TzRW/FKXIPwvtGLLi3QN6q/jwsOsv6jYSjt98E4KtNQ3zCirlq2a0eNjeZgeMLsKhtlG4uM2Vvn7++euMmLU6ni+mvmgvxLgNdSXJvum+jv9fJ0oEZS62CzyzWp6m4XxPFn/ajIrx4QzP/VtmRymXFkPgqAqax2b2FeyuUiXtUdhreu4zWBs6vnXs9RYiaHgY3iYJkhXiyCsS5+g5g6TSIlpePeeW5Dkj0DtryhwAy7mu8JvfvfhtQ2CaR1B0WULEJTb7OkAGZgwmIJyY0cSjXnWhhz5dW8I9eRQ5k5lMo746ODArQEuKMzJiWbcW6j0ytytAlNSOLIRUE3/p5gDrAxz8KXVjjPTsQ0hbakAC+AkRGM+/NEbZmUhiDja7y2g1ZAaN2PQlWhL8LXT7eceuaQXQbrqXoVVnzlZ4WkZxQTGMTd64cAwUjIlF0U2+JGj1Ync5TnSdG+zmBKzO5cYxLUFXxwrl8KCS6AJXiIS3ckLSZeJeZKxXzRuVxe29i4K6Tk58hnsgH+MAfbdFw7dt1X2RZi8b5hcRC9VZdvk4DStp0rtVDA6qVL/91sRugFzEbHX0BzaLvmAHjF49oO1zstQt1d5npWvMUJDs5ZE0sN414Rv0clQ86CVtvcIkIAiNQ65yVTPig0Kby82TmtJretEkt0unpLPwn07lqczTIPdWSfK/tcvU1K5tgGP1+tsLTETipzyizJCeaqa7vT1wnjsl5sB2c7o28FhzcqQn8BA1QdZSo4cvPUMmPcu+sz3JTbx9LrWpBzp6DRivSRw8tlzzBVBghUtCdSU2qM2aUOe3zWqsEfNeNmPHNaJs61ILLCxQIX1tl4jm98LuOzFugP6ybN3uAhiQV0ej2Ria3iW4OWxAW69tdlwUWJV7NWrlqf10FQowffL9WeNKCIz2pWErMCKaOqJMnOSeSSVU2DYLmFfp//0quIcEmIbNDBaMKiA6vkb87OpUtAS+6bhwk9axjvKjmkxmqFcfSq6NRGkiyMubPoSF0KS8k8H868yEeUxKk7cdvMuBsXn6FVh+e7Gk0OUTF1zVFxV25F2A81IN9+k9SW6c31K8wM1G/I2QouXCyM0lm6Bvk2+IXZUHMoreFB5L7uKbNTCax0BKNk4dgzc/O5juD8JoIILVFZpeqVpO08+1ffcUcvEucKbx9aS1gqaGouhxXoXCzT1Tguo89jS3fYfdBCEgSgp2zghcX8sysOMLrwSKMJboAkxKB3IxVvXXnW7/PMbnkrwxxw4dWqJHMbpNTjOBm6ly1Rs8Gv1X4Q0tH8s/Y3O3bfyVImeLtTJV4vO5FdJ9nE5td7pZzcOaIWsEE8YG5AnagS1zm5eLC0lUY0eVVpo5Bm5+pqNqyH0tcpMX4gHMuB/hzeO9yTk+vACl7tu8KOU126Ju+K1MnpJRZmtlZIoRnaScw6uMtCH3msI0vzdiPiSYkaaADKNqGHtyu+6xi4/Xx53AUoY3H/eKK79MwoLqEm6arqitfZEKRxrXTLWzKm8RlfLTe8Ox15Vmae2sSpj8x9YJ8rKS8Bzqo+V86+Dnzl6Zm7TcSa5nJunqymzJvbVQz/rAL8Id2ENQjFLwzySvyNGV9ql59X0i3mwTP1yErNvczQ1ZQ0Lt4g0G7tzQx99AxWN+1R/y4JZyMnF8OO3YkMz3lk+2lhCGFkU9m8UQVzR4e16SDRBsSXOOyCBn1TKzQ+c/KMeGmZFMFwNy1OHg7+z6u242Ge2A2NX3P3mrty5i6fQz4JnvrgXMAuHMN6BdyJPQWSbld63BDrW7saxbkNLs3UCq1JkM7XM+SB0cQ/aRUH8SytvAECWvlPamlrG6/tbE3Ch/OBpzZyag40WbrTOgRjiIC1z44GnHvi3ApLL5yWgToX6uOALAmprhcp4CjeXYdDZ9xVR+2Kn48tAEIouFRuRvdY2xWXpArEPGd1CP5T932bawlw0EWhRiIDW3UphTiQsp7/zNKFx/NEqz7DXQWyBQsN2lglTdDFkaGp+qwvLcnvhRUYFqjn68rl4zp2n7QlQJYQixe7yKoJLAfBBuiTB6w+iqswRbtl7cz0CQ92ozllqJlbkJVQbbKoVpO5S/nekCYMj8TrGcs7bsnUMnx4PrDTMJTGbaaILkrvq1qKd1eeTJzofnY+p0BYjrkqUQuN1qVl99VbgS+6opntQg7m45OITe3mjS0CaczcV/eT3hNSLu2kGkR4M9exvSgNsckiOqi8s6pGieBqMZp9DFD3IYahvDc88d74xLN0xBBe643bIgGPdaQTUnPmx6FXT67KuLbD3vwUK+/4swrwh3SzCGq4TdhGY5C15Es+n0gpSnzwxaETwseXdk15BJ388bbNJ2SrJk1iUbEIpF3QkQDdxC3RwLJfzIQZq5qjrRrKcR4Zgg+UosIUQEzcPgjZggFcqsDVrHPIPSDP3iJLOQJjz0g2bqeZuRWWZNSWEaCUdQV025a5Dvwfr97hnf2R5+PIi/FESca7w5FTHzkxuDh1bl5hhSfh0t1Md0zNxYblIuN2EwahJXXOaXBbolpCpxJW8piaV4SaXHTY26hxvuIQpuAfroG2a+Llw5795CoaY25+DHCun25+Zw4l35XGIEoeaqBplVMaWVJnOY3oOSNzjvaZeFC0yNInJQ/dwQ/GFojV4NxG2tERezdD5TA4ECOhniSI602e0uhKMb2QutFajhmPX5RrgeDVgVHNPdvGWKBvp5k5F0rWDYW38hZt5d2JknbmwSQZPSesKPmUSMt6UYEWYTgaZYlW46e4x7aOyNU1iUE5OqePLsgkscDLJhBhIRAh6gFOlTAN9lYfEZyteNXaCi4mH/fy8hzyGaQJu68Y7TFTH2/o7y+02+pzwWR01c17siQlmUWAW5WLIInQYpadRGOm7ZmzRvBsmunddUdd0UVZxd7tOghuwfByNO2NYxP/UdAlBWJcsNwxSzyeR6bS6JoYiysC+4wvxateiPHebXZRB9cFNta8qVpCqzDm5uWbwst6YNbCaSjc5JnbdKQwUqSR9sohV/Z54ZvHWx7PE/MQXYu6Vr52dX3+YCu/dfssAH7CJoRYdbQ6s+FzuHVbL0y9BK8V/CBqDh8neH8xR18VQ9ZgauCtmxyVXxEsG7qz4ApGJSgWVjmGZYsBuJKHi0fgNHT24+IWSUDrlyro8pnYht5rFVjyqlbhpMVVR3BtHxqJ2suGolwCfi/J0LbeWP58lc7z3ZnnkzusO5gl8dQnzkFZqOoLfQnAzsovWqHnrC1H8+PVcVmnpTmdodbBUYtXbb+1cjH1tqmqtzwlspKN5xgLS1oFB4xQjPHPemojc8sb8rJE9SdRZaslFnwBnFvhaR45nwfa44ids9MHiMUkAYORXiw8uz1ztz+9Uc0al2MnKCX7YppjfnsOf7WmXnF2C7WNSFjUYjE1gidoVxyxS7WZg1upJiy10HqitRyVAXFhX64QM3FuYHAa0yKUk7cQU1RseTaGR3O1oyue3afZ3nhuXJM2QtsL9cYTwYv1GBsyW/D7pU+2PWYlvuuqoGSX97Dic0b0Ur1OR2g3PtfsN4alhFmmL3Fu0iUUqSbnwQbFJWU2L8/1upVY6Ld26ApyUbzlb3JlUQUb2GW7lr/DA+bR65I5WMLMUatKuLkQld/VE53rp+yLUyWqrjxdN+Pt8eJZjCF19qUzJfdIPOTKO+WJF+XIIc086p5G5lU98ND23NcdX3t8xuvTzj9nS/R2sSPzcQdXx+uq0/QD2j4LgJ+wxaXrklbrIvv2sHq9yaJdtbXos2wtBiIwIuuTfGHfWp921VYVc4PSFsHv+g7eXoPtwrdV0zHDuRaa+hzJ3R38CbrOHuL/2/txyV4TymIJ8sWlejXhFOlkEYYitDZQcg/LISLjXQftvjDczxODVExhLA4PT9LZp06XwpISU5KQR8tbRtrM5xIlemFLjyE6RpLOkBrVxN0eLIVo8IXbt2o6iEX7UFfOo9/0LSyDUtJoh/rBbF0wTbQ+brzElI1kPoMbU4usNTRFEWrzOU6WzmAZmWqgUZ0C4R/JKFNDFlhOhVe6Zze2TR+1try5aBuwtERJifvZJaqG3CgCZuZkbBOquEFv00SRQOVF8G5RCWdZ4fv+GV2lREKgOEBOGW98hQTXGxe1xncxVrmhXoDqrSpN/us2EW10LpzZb39bfdvNwIXEmyNNLblW5pUa3eW2aN7hSLiYhEabVCJZXTmEW3wRv/i1+HPqrSNLx5dCapnlHaMthXTXyBFgttakXXiZ2hLa/O9OoDckBY3BhC5pS0D8/YWUe5gzJyy8JS+vLlfR4OOP4uWv8VOPNq7FvkGAs5TWHRQnGFNo8l4SWr+3ShDfizlv1pMpf4yag8TmnhijcyLWOfbCKAPNnFIxUHlejsy9IDZwN5zB4DgPnBk8+IlslmCS3vpMnxJF/P3aPguAn7TVtd0QPeq4TiXamsAlG1sLkesgleTNa3pda64fDxsFwNs6Pt/Q4DKtLgLeG+UyD4wbxggOYFxkKq5wv0pjbRB6I3QMLxQIs5Xc6xWeFDDr0aKJ18i+YLpMmVEGpS0rqTyg6ckJse427zfQsU8cxs4kMyqJuUewE6/0yMKAsbPOEvDqtSIKJhr70li0UJtXoepR3DNLvfYbuvpufhyk9ECdeZtZBPajt4Zqc/myLD3ANK5d6tmycm4DWXVzY0jp4sRQ1SHfmjO1Zt+/LPTF6QSyDl7XS+g4MD43ZFLG0QEwq0KaFYWAja9uEEsvmwGqWgrgr4uMK253ZVtQN3K3gLsbJfm5XueAqyPISjdpuEegXWnEysqziGNohtMhzLDmx8+ykNoqh+XdDRucGpH0kuR9vxpa0YXFFny2J4IFwX2t/lYZtvVQawWbrsqK9TS8tVMOQPOj0m6E8cHn+qn757ZSqFnRArIPhaWo8lLMSLvG/FaTt1kTaPdZXMpOS7jM2eO4QpDWtyPtwVDe5sJ9wlE0/FjY2sXxrFsysYg4NaJqJheLhSocUZJxk5tf85ZpJtF58aA9JiWrjztc5hqERFc46cCY3IZrygoirrYkyrNyRsnscmU/NO6ro5WbZccINEcop2wbEOZa9s16+gwE88O65dXXLxmyGpyuYtd6dQMKF1mzLaEWrgNcX6s9YeOzrtw/Xb+y0W6NdFvJz9xlYQiZs6qZ05JZZm//SQkptFh51pmWRVapQSD0OO3VgItGxNUnPjNbNf4OZXGvuchgg/HBSlRvmjhXd3J3W5dosW0LhLF0r06mXDkUl5A6hYNCteREeGmsivMtbsR5U2hxYespN27TzGwOwZ6TIKFt6QCON4MM8RnX78NYGYfObqheRWVvA9VeeJhH9mMlJXUlldzj87jtTEcYS+ed/ZEhuUbiGKvtqTvKtJvxdB44BwBGa4ZjABzW1mdUG/t3TuyenXkxnSmD0rtfEKqNU3MFfa/ACTWf7vOs7OcH8xlUhH+aZJbuCjJFlG4DU3Jh2RU0JFyq92qZ1t2HTlewkyjWM6v6zMXqiu2i1nA+kQoyG3IW0ilajNUVYWSxzXHhEkK/981w7QAdoe7ivoogvYLKKBLCz77Or87xPZCiW5ahl69tzgjOZT3551s1R9vgYDXLnoT1tiZGsVfrsWkJack1Uwc/z+Oushsrd/szc8uOsiXikl23pn3ufP+4g5xcMCF2arukP6ktaJf7fb0H48j4v2rkwdeFd8cTh6EypkpO3lkxIJvSus+Si3Xenx65LTOH5NzF/+P4LqfuIvgGDHTeGZ4Q8fHIgDu/n1V40AOv2o6vnO94db7h6w83m+2R9mhbJU+0tfmoZQO/dO9AfAaC+SHdpBqpBRk9Mj0CBi41Luy1HdN9IbGQMbN8uWHMZNM33GZyKV6n+cUrEoa6j4BmtI7Md4l+U5nGylg6Q+7MQ3dS+lJCuQOXR4uXVfUZnZbQ9Qs+nRJu8NH+zMlbZSsw5tRHml1I2DlI8ZBcVUYaIsaclVMtLItznXoPpFdWSngDPi0uEzZ3N92csmeLhnDWMbJJBxRkcfLwuTkI5qw+62opsS+NQ5kp0jklV4l5HCaOZeA8jw6KuEiDbFtdsrdyLBZDOiW7Zuk7uTv4pieG4vVVEgtnbg/EtWe+8XjLzVi5mc4O9kg+5G8pu27i4cxp6DzlkWUZqDnBXFz5pV2QTafXe9pc6M8Ktzcz+3GJWalwkxZHnP7/2PuXWNnWLK8P/Y3xfXPOiLXW3vucPPmoNBRUXaxbl/JDYJdBKjogYWOJDh3bDSMhN4zcMEiUdSUXDWSwjGXJgupwKQGyJUMHCYSEhGxZxnLDli/YWG64QRkBxr5ZVJGvc/ZeKyLm/B7jNsb4ZsTamXmok3myzkHeM3Vyr0esiBkz5veN1/9B2j0HWwyvTkWYU2NS37AU30xz0ERqAHMmrRga0lbsUHYzT4BmGSIHPkctzat1lSuAZg8wIXKAgS7uHGEKXTVc7BUuToCuios2JJ8D6nbbovvBD60gF6/Myh2UI/Ql7MGS7InkLnZdPTGVHvZa2efAz+QHjZ3WpEA/BrUie0BfPhTyBuWibK8ydt+xpUH2Dgsjd4zZrulV7ad0T0xrS9wdNg5TDT1b3alO40ip8+rFiXWb2LaJunkGfGNM9dYt/V2uaLTvaaPLE7Sn5K313oWv2UteLSsvIxCauri3qvEgq3t0onyzPHDpE6+mMw/Thd/48h/y9csLvl3uOPWZU1v4P04f8P78xEPe+Ab33NvGQQt3upGnxvzQ+Ed5dRDM+YE36wxz3pWb4NqlwkZwlB3A9lkd7wLgxx3iC4PZF1EO8V+p9h0KGDaqwG70KWDaMZvrGrwklasmaLQ8XQxb6Eev/nhVmO43vvLeG6bkd8uYJajAuUx8qyU0eZWniSvvRjw7nrLf5INj55m/t00Uh91n7btSw5R84H1INWZnsm/I3WCtruKyhqbmto0Sx2/q3o0KHCZ4cbjwYnZOoEP5fWMd87Y5xHZ7111hv3RXhxc6c3DtDsl3tnOAZ0514vXlwHmbWbcU6iXf/WO7uyvcHTY+OJ445EqmU8xf57HMHKbKi6VyCZFiRFAECTX83mGZXHas9ozRmbXsot5rz5zrzNM6u0B4UbdrCucHkncLMMhL5fjBmffvzjzMK4MePGmjWuJcjbU6Wu4wuVxc2m8u526Oqr7GdazR/nVxA/8MU5Q3Li/nVIzR3XTjUt035N6FGqokZrZn4ntv3sx1TYugW0I3IZ1wIMxmOxAmXwIEMyqxH2StvXX0RagLtIPP6wQPhv1m3aSNZ+jRiOFXq6Pgze4qTW+VqVIdnZ1XT2jbUWgHY33f4M5g9mhng74Evqa3FELnODBtaRzvV+ZD5Th5oti6sKROkkobwgjm7cmtJi6Xmbpl2hp9QfH7ZnwKA9B11QO9XmEXfoiqUkGSkWLNz5N3PFS7V3+5enWLSxdWu/L9xnU7pMqL6cJD3lDrfLM9UMUT0oQjwr96eM2cGqUra504sfDl+Q2G8ouXl3yr3POty5FvPd1z3mbvYvQIfrtkG8/eB03gM2x/wrsA+PFH9kCWVyfm9rAsQmPU18fNGv82/yLZTYAbmqCGLxaTfR2KDdsWn+ukYvAkaBI+/PYdx/uNZSpM2bPCboZq44P7J1df366O7eNFxuLr/Qo7FhnmQ34a1hKtE5Wew6dLU5plJnUFkhQWRhUla3ULpuwb5jS5UsrQn5RQLclUSkmcmOjZmJM7zY9DCLFr/KK53qa3UEtXGqE/iLj1TJzHIRV6800RDNXMuk4O4hhoulhUGmorc6+UTVikI6lzn4qbkk5e/Ww9ccyQtXKpM6d1okf5LsBaXNm+BmBlreo8xe4toUzjOG0IRs3uXD9rp7bQSS0JmtLVWD+cWa0gvXO/FLI2V9IwI4vxMG+sNbhjIXOWQvigW6cFcuBa68aU1K50ipGsqHTMXNqgtgiE6uov3RIthi8pV6QrrYXf4miFGgxzV1SwqbtyyZ24Ea5EnN/M243R8R0O8Z/GdmaxlmSDhMDsKjCmXKUJu8/Jdw7u+LvQ5R3AsFEp7h3Mft1zTaDeEfKCHijTSTj+klC+ArUBC6OPGa3UeHIJUI4YFOH8NLNtmXUpLHNjyq5ni+L0InVLLRXXmdUDnOMke3OzUC8ybQ/UMjAEe5UUn36/vdCjC2VOR+Da1n7aArU9Je6nlUMyllz88xfvIpg4IOabds/aMlk6k1SOukHuPLYFlc43tgdmdZpDDvrP18sDpSUmqbxMJ1qGfhCUznmb2NqNu3zQgvb7a58PfbYomHcB8GOOOvn97Twb80yyvRX0xnGbpNk14zTxecZoed6AFgHPYrsI2pRtafDgYtgv7hrzXHfVCI1Atgel5JUe4lDr2yow6eD+ROZlQYYV72IFdMY3Q4FJhmRYvNcAXLg7ub+Rbp2tEy3TIb483rpncg3l/cOFF/PFdTlvLtDQIvT8oWMoFQ0ZL08K9OaKdhOKCU3S3nbSPmYeIYHWb6kQfuF7T1jvbEx85fjElw6PLvANvDTlw+2Oj7YD97kyycqlZR7jRE+rspYBSvHnLTLxtAmvlosnIeI0hGquFLPV7NwugabGi7sVEedkrqeFdlH60tmS8mqqPMwbKXbx0pVTcQWbZjnmQLbbG3nl559TEqOZO2NcG97+b+9KVregaqZUCaI1g98VziBxk3jl5/MdjfZnbdGWuFUluflegrNqWVwCMIce6Mqz2dqncQRzhaaCjcAnHmTrsBGLgPUdFIx0rQL31mOsxyFUsbdEI6PYhe41qkzU268PDZtDSH6nLShSxCki4NzDY3MgihqtZy6bt0Jz6sy5kJMLSb9cNsSMxzLzehPqpLSWA03qf5/SQG4TJPlQcBrBY1Rue0QXxygoSMJRxrmAOCq4NaccCTMqwtQ7LycfKzRV1u6O7ll60Cc6KxObJc62sPaJ2pWX08oxVUSUYsTsuXHMhdflyIflyLlPrD2z1onaJkdad41uyF7b+kXHkXZpqu9AMJ/bQ4V6dCkmEw+CMm5MeEbghZgNdBjQaWIBJoOqElfb0FUi4zb6gzs/lGN3YMtUWeaVZao7bD1Fa3MPE9qQpr6wIpj1LvvG2EcvCA+G/lYsulv+82ZeAfqPPUB2fBit1pmkhUCauGamCbXG0BrbuYc5Ne7njbu58Gq+RNvW32fvEkIXV/6PmbdjMKIatP0x7I+5eXx3L8CtK4/r4oaedcy4rnqD14+sczhsfGl5za89fouDuECwAR/VI2B8+fAGQ3iqM81g605BcC3Fq4Fw7w4GmpLxWCZyS7tBaKniBb8a9/OZh2V16gnCm22O+Woj3Vf3LsyuFWndWHFE7FOdKTVxCmFwAyY1ttA1VRmVnlK4DfMjQO+9BEpTVhtAHL8HagSvbuP9uNYjo/XZvd3btnCCGBtxJzYtu7qhCJi6pF83yBF8bqurT+vowPoAlow2RRsS78DsDxiqMTeBzpRdDPtZy3IIWkQCOr62SFKlxrSi4kT66qIFvSm0iLDd4KzQBFuBQ4e7hk7NRdkFJOgn7pHZmbJXZL27eP2Y/7tTR8Vx0P45irpQun/vqGfEsDJoQldCxfh/oZPnSp47d9PmvpKpxRbkj5iC7zenGlq4xqUl5tE1wB3fR15+ajNbVy59Ym2u4vSQz7w3nTn3HMIQ7gKxUPjl7YFTXVi78rRNvD4dwmHCnVt2btjNWcdbRHPl7m57B4L5vB49BHi3+xj0F6EPEvoNDHsPgnsbg6v6SPw8by6g3OfIGokkNLzVdBNX52/C5aWTce+OlxBZNhQnuqp0VAWZCqmFE7g4sqyGwWbvuptkjuoQCAQg+Gr1mZJ1B0JMqfoczIxGYutCVqc2HJNXgsC0cN0AAQAASURBVHKE82ruwVd9DlWbb+ADMfZi3rjLm1eTwYM02Mn1FqN+EQ/AzRQZv7uNZPt278TwRTqybFyKZ5bWAPFa0vUQ/W+6KR+9uaPWxKkt/NiLb/IVfcMxFT6YT9ynwjfLHec285BXDikxqcPA36TO02UOX7MIHt04b7P7nuVCV3WHhbmhDdZilJZ5fU7cLyvHqfLe8cw2uwXM6TxTm/L1Ny94cZxolngxu02T5o2z+AzyEsCcrWWS9XAav352wjWRkJtrNUQNBu2FIL2rOA+sdXbvR6fLGK07t9XvEUGWTi94q3X3oIwkLQQcLGg4olCTuCboLE6GX9n1QMe5/iCHAMtrN65FPEEUwX0WUxSlwffb119Ud0MbdF9+o/sSrdO4rNfqUKAvXgl39Uown4S7/0vZvuB2SXbf3SHjLrIlCcPj14l+B3YU0lydB6hOKKd6KjVnXxnnNhR5KlnNk0XpPE6NN+fF9XPXzDR1NHUkN0cBS3PRh2q7+8V+lUxoW8as89SNY8hUOXXHW63eSXHAXEe9lYwPbSftTPgaNMD6xCRtp/yMSf+lL/zSZeLVfOEQSlGbZT6s9xxz4ZAaH20HbErIiyceLwdOcZa9qdNpxsXGvNLNFVXjxfHyA94tP9jxLgB+3KGO6hzk3z6b28JcbJ/h7Z2I+JPRahmLc+zjPXuLQnDEHN03l3aAyyujvQf1ZWd5eWE+Vu5m1/VM0piD2J6w3YdstBCGIkip6dqWlAgIFmoodObs2WmJ1hhm3M2VJbv82TDBFZw/dkwO+jjXzKW6AesW3nO9C8fFK6sv3z26Qeh0Hp6qbObqEqUnz94Np1fg5ph9OL5zJeZGHbpXXwOd2s25cSX8A2uACCyCQ8oWzhDXLHNaKoel8Gtevua95cJ9Xr3FY8pjn92EVs6e7QaopXTX9Wz9eh33z1ScRH4pbmjaulCrJyuHQ+H+UHj/eGJJjUka5zrRehDvc1TJiyMDVeGxLlxqqOI0dVGBPcQRqi26E/hvj9uAZ9GeV/HZjka20WwQ4PWG8O9Z+XmbAzUYV8ugleSKPi0iQ8clyIatUw/KQbQPLYGokNa+OyvA83Xwgx7bC6Heudan95ftiugcQS2+fpY4xVqz6La4bqhXIaNi3duhw8i6+HvQ2KjbDO1eaZPRU3eAU1FkE/Ts0na6NPJXz8jkm0AKdKVbkrWQ1fMeihvQJh7rxNbuKFW5rIvzade0zxKnQ0Un/8xbV1qBXn2WPOgP8al5MpKNaWrMi3v/Tak76GW0ufEO0mGI3EsoGbXEfV5d5sy8u9VMOGhBxa3Lik1c2sTWE4rxpeMTIDzVhTWQ2pM2njYHv3R8X3hzPrCFZq9oqEvlt+8OQaXz3osTL+btU7pjvr/jXQD8mENiPxheY1rFUZ1Hr+h2V+wIhM+OERhHu7v4Nxpgmr74bKPnzrQa01qxR6NJuAPUiWWpLJORevcqKSgNS3JTyxXPTFcmMLfF6aG+PqpQB8O42gm4dZJ/5fYpdKPn5NZBAZXpHU6hPJzEuXAaFPfSE1PymVSi8madUBpmCy+mDRFjkhYzCot2p+56lQ6Y8bZWC8DHgOfsWocyuEGGoHvrZr/Ik+1Cw/5TQacelaCLZV9k4m9//Us8vZr4aD7wweEJpfNCLpyZOPXJwSY0HtIFy4beNV6vB9aS9yrQYhbpi3Ygcr3VqhO06rPMD/uBh2UjJ6dMHHLhi/ePvA4D1FKV1h0YMIXaTpIGOigKurd+zcSTKzVKj/0+BmMaBNS8t9kNxQLM4iCgKfhezaGQNBNH2pqy5OqbtcT81ZQ0uSB5q4q1QLQKWKAnTQhOnUsDtmzIAqcvw/JtHxHkc9AQPoV1N2yShsRgWwifzPGA52trz/ui2+AI7IG8DlHsHkjoJmgERNL19cxjgRPiV5i/BflRKK8nykOnH3wjt6lD9YS4/PLC/GpD78LjUYZmq7m6UDhE6JCpw1Az1GDWgqjRZhfZNqCunlTVJKTkCks6F1pVT1B2wFe0QTu0KqyWkQV6r3SLtRx8T/DcwUxIKlhLkIwPtyMvslOUvOFqrH1yUJM4oOYudVQmmim/fHlgkcacqjutmLdSa1Ne5JVLm7hY5jBtJG307B2k2lztSGL8klJnzo1lKuTgDH+Wx7sA+DGHjRstkhcnyULaxmK8gSN8j/RXwBdsWLa4mLVnne3eUWjbK4FXwvL+hbu7Qk6uuuC+fB5sDtlbJ91iY1NjotMsuTJHVExt8GsYfXXDtJOTMacSxpZ+DnN2oeUlt917rnWhmjrXDXP6Q8usJdEJs0tTplS4XwofHE4BoV6ZpMVCypza5ACW7pUIDJZTSHOhUaWM831+HTWy2CQu1ltM43m8xdsDGSEECrJfn0vUhaxfzg0TYco9WrTCYztyahMdZe2Jx7K4mktXTtX5izWqwNEGdSBCWNh0niFPp6nR6LyYG8fJs/5mjgptlkjJWIMXOOeNOftGWFp2QeW9+nv73vPPeVLCk3HveTKn5qLh2r2CQ8jicPWkPs8t3fmb46i9cyqZtU0RGDWu2yiwNJRK3m5r+Hu9NflFPShpEUxjPPBplX4EihrXAm1H8e5JdFV6xgPRaGTA3mXZ1UXE19l+UlEp9oxbnK3xK7v+rUR7l+a/s+admtkgbUpf9KovCtijYl/eaIvbgh0m55ne5cocfNhmroqy9UzD6Stbz55grZNTIIrPwWXqyHyD2u4ajhGhHcooXa/RXpNBgjx3UupMU9+dS1LcGx0hC84Jjj8dWqEmeu1a9IkarVBXZvJ2/NY9gM3aYx3mqzYtSjXlHIjp1oXSMlvxDo1K4csvHknJONe8r18wDqlyP220/k4J5vN77HpiXPeo5rNBlUiUjZ2M+nwrf+towAQ9ObG3HaG8auhDZbrrHO4vaI5qLwbmOoKFOVT51ieuh+ec4D9L0im4ukcfzqzqTuaC0RqcWiYpHKdCorNMLTbaQYaW2JDNJb9q3luSblbrrzlp573Dhfu0ctSVibojJ2t32bMWfLqda4Y7vA8/NRhIxwHe8d1sSHl5sJHYRHIAjnwXTNrYTT1NA74/ShV//1NUjY9lotsL3l8ytTvhXzCqKZc6xZ8Y5+JWTXWIbFug//ZEgtiIolkrkFPlxfHCXd6cQyUWMPuOiiDSqHUC/H2etonS2hWGb+y79mgD3956k1a3RgpqiooxSWcKo9+kPWDv8gxZ3ki7oswI7mtxwEWWRhUDcnAGPRLkqeyt3t7F1W1uBtomEhVWqAoF8V2qeEV4Iw/4g25nhgef6bXfCHYQbBbafP39eK+O+3HheJ9VvvVERPCMFu6YVZrZHtSNSE7HmKL760sHVgfHaJhfm+Kt0fcbVWBahTUlV2wSVzIyXDLvzbqwtcRlm9iKo4W7Cb0obGF2bQaTgRqaXO+1Fu/MCDfVrRpvk48lDZ6tJ7euDlRBvLOSY8YHxD1iMdtzBFCiInROLdNMeFPmwGe7BmgPSbSxH7RQxWkmVMRbuc0dRTqxj9CZp0ZS4YPjE1ncsum9ZduTVv+Zo1TLOyWYz+9hZvvMwH8QswVzU86kQtts1y7ckWlcN4H9+x7yUYHOUgNUKZKpc6PWmeNSSMk1LIczvPvPecVizWW58tDuE6+UlJHBuk1Qqe4NZl1Y18w0CUgN2oRxKu6WLs39+HJq+yxuAFOa4YHWnMyqKbiFAqB8dDnQZq8iVI2Z4UrfeaEr5xZLpwkFX2BJJEwyvSqsFnw3CySoCGqDdBwZvMFMc++75hWhhC1HM3XD133T8+e2Dk+Xgwfbu9Bb3IT7vHHIlccyu15iSMzVLhyjwvbw5mK/Y/fZASdhPTNacK0lXp8PtEXRZLzIq6NgzXlWSSFx4XFbeNpmek8UlBz2RledyO9SARqUPkEVlsmlrIaifkf2z97pJrYnDwDZnHxdURa5mhyvLYcLB5g1mL1tXorQu9sRawrj4Gzeeku4ZJf6/Srhf9kXIMH6AfDawVNp5erpx/cfCEd7M2+gb3w2147mieZypRWNBTa6LDv45baojkRJpptxBfHYyJlceD4eH/zBtrBbmdF9hGEhraZNSF/PpIuwfQBdhSeus9sX84UlNdLh4ghf01hTyT3yRHwfaU4v4SIwOc9S54bk5p2cpt6fjfxOeujaDl3geJOtJ96sB+6skBYfQXgHBbrojTi6XxDvfkx8VIRO4mU+c1AHvjzVA5eWGM2AZqOD467vQyQ/i2HZ130RoTfvdshIcrvwzfM9rxb3BXUBn1CewlHLFnScz/J4FwA/5hjznn0x9ZhzNL8ZTaEtwREc2W8gDMaQfT+yt1DrQVi/AOUVlC805NBJh8JhKUxTBREnYO+tsc4h9EAX9ZZllsapzk4aN6WL30yl+uyq1evfptwJcBg1ACx3sw/NH+YNEa8uh1JIC6FkifdvZizZWzq1j7YlPEwb97nwleMbJumeFTZf7MUSxTw7dAufMe9zo81xbk5B85YreCbY9t3LB/bDLSGlzhSBujTlbJNb03D1wEs5WoLVg9u8NDT58z+WhY/WI6cy75JwHvy9siot8bROISMVweCmr2cGvQ2ATCdPnXmq/MiLN7xcVl7NZ8Cz4NI9Kz6XiVOZORfH5uvO71Nqt5tKUPZrcpsIZ23czRt3U3Wx4ZCp82rbt5JDcvBLNTfxPbcrD0DEN+VTnZy72NONVZaEvY9XeilfARTgCVQTY+vi1khV0M2lv6Q5GEyKsXwI05ORL3u+wu2S+X4PwQPO9krcFuloAZt2s6me2c1tcfN6bm6da/VH5DGDDtFAu7+HgR4NxoHP+mNHTMWf49bSbC+yxV+vJU8MRxvSBR0y/+j0krUmSnHQWK2ejPYqWI0Za3OBcVYcaYuRFoeW1/P0/EIKTn2KxHh0S0Q9WUna+ML9ibu5hKWY3xuDi9vsCijr0crPai7vl1fHCiB8e7uPOWC0/K8DHmCMLTpZRpLiwayZMKXGXWp86fDkfp2D32ths9RvWhTx89K9BftZHu8C4McdItcKcNx3g3fk5DWkQ0+ukO/eaLJ7hBlchQ5aZOxnY/kW6EWQc6K+J7R74XSvrFNmWYpnUmOij/gMyRLf7gsvZpjVzWtV+g5OEfNWZ9bGhUwLQEyrw4gze+ssddbiN2RtwpKby5bJjpffZ3PDL66aouZLwkcrEkhHofT3eDVduMsrk3jkT2aYJA5qbD2DjHaiMInPm4Y2qQxgB56tqplTG5B4fxYZ8JjJefa5TEIKQevhdTcWqkar6Ok005twStnfo3YmKSiJaspaHVmaYj5ynIpbDbXmqFpGFRj93fBYG0hJq8I3H49sJXFZlJeL0xsmrXSMV0snxfenMofaTszUAsZ55fNF9XnT3yst8dFl8U00AXNnSU5412h9D46f20W5w8Voe5opWYSHaWXV7vOoaE87X83h8mNms5u6BiFbAi5ZMVpq9FNGLoqsGr+Dcg89Cz0b6eKB45Yb+4McXSC/MZceLOJ6oJMHKTNDT2CT7ZZA0oTdXihGF/upSAQ48K4B8ZGOfTnW81jvLXucUvEW6C5tGIBM3WD+MJKdJ+XpfeVyX5kOhTm7ULlMhRrlaqsJVN3rM3yaurrZrzTBLkotCxwaMnurf5gqE3ZdJiDa9yrQ3V9AED46H7iUzHHeOOZG0ravl8HZhbBGA9YqmE1s/SUPk8/v35+eWPvEY3UU6D5T3T8Rfw6nT/m9tqQedmHeBfhonQNZ7q3P0tN+4QbSfARhFbjL66dzs3yfx7sA+DFH5zmhfc8qYz80iQUZ5VJroY5RxBfteKJwiLcENosb3waPyvFXBjVhqVMCQn89jCkJVYyXixtU3uWNZsK5TzR8Q2tkmqVAgl7tivwpXGOlG47kCzuLKTmitFraqz+40hLGDT9I2SlS/NplJ9YfUovKTCk7OMSDqLs9KFv3AXiL1ucV+Xkl7++HEArxfl2S4jqlue7vYW0Ttgmndd4BK+NaDRBBq+qtPFMeJr9eby4Haku++PSquFLDkqiFskyP6kmjJeizRoOewoPQg9c8V96/u/D+ct5d60U8s1Vg6xNry5zqHCa21yBtMU/TZ1XfNVHwxxgiia0Z99PGIXde5DMpEKEJ46DVZbYscWoTb+ohWqSeRBmdrYZsHOJq/N12AM66XY1556kypaFF6pV275OXdmFZIk1I4RKRVyGfjPnNp2OM+9ZtQKpQXgqX96C7Kd1OyEeg3btYtxTZxc8FT050A2LuNao6iSCpQ0PUbs5Xry/cAnSTLtd1HrTI/aFDWUebi1hYUnpL9FXYCnti4/PGmKs2hRocwqou2za8I2MGaahX3Ixqb5yXR14LlDdipMn3iZSMw1y5n1cHygGyl7USs0d8nizGKVRaqnXeW1wKsWGc+8JT8T3lugf4+3hevxFdB5cu7KYcUuHl4cJ704VFC5fuFAqnHy08lXyz1p18fxccwncgmM/pMXzxrj/wf9yqJr5+a97Qo0e+h48RyyrXLX9yOSk9BwFXFAvKgFlHcyfffDLd4KCFLJVMCddzjVaHQ41r86G0bwJRmt6cXA85ogHg6B22JpQ2hzwaeyAZ/oHjxnSX7AFYubL3ZqkkXEZDw/2iRwAp0XIxHEBTm9d5z8nuzxtm43c6GM2xNWea27xE+zDRMCaWvGE2U9poq/qcsne/8N281fetp8O+aAeVvDWlNXZn+KvORpxLVMKOqh2/swAiCJIatbpD+CUpKplV/DNxrpVvWIdU0KXzhoPzF+1KZp9zWB/tr34z2MKTjEk799MKZvQmtCTMzqZE1BGgT22KDUnIUr0dPRIIadxnYzFhlbTD1QWnxCxzcfCC+f2x68CKy3qpNhSlT83vgyilpBhUF8Q2okXYruTpT+Mwg+kjQy9Qj+bu8NmRp/0AelYn6Gs8OMQQhsVRulgAZyS4AECNGjH65rf0ur0Ob6OzA0PcYld5MnYTV6lAVaavT7RHo92rt2qj07JruhFt2iHYYNdPfCTPFskKBadnJJ4ndp0diDRABwPAZB1KTTzZxGFy15Sh7OSJls8BHzdv/+93mcCbMnOpiUmjdSqdFFVevMv92gAojftcwsIroeKf+KSNtSS+2Y4kPTjFQZ0+dUgbsxTKTq1qLssm/vt3IJjP6THAlLfHflvIfmszTLUtAUncxHQYhaovJunm3l8GcrJdWxGBJuJ8uS60GBxWerShnD/30XZ0SL92DtOZo6xsgcpy0mui5hazuNszfd53b2OYwYRU4ThtqPZAcMle/YAHM2EElJiL7dyiQFSKkPTEQdxs00R98XRvBfdm7qRBx6qHrpva+Pm19cECvLUYGgn3/GwedFURufBGFq+A9xaob2yquAJFxx3ks6vjN0s3NBEiYKebVuT1kt1W/sMmaQQJEErJgPJ6PTraNl24Hwo4UbmWqHRV4GHeuOjkXnHdCWilpV21w9vOITxtAwnrqNxTWZAZLr0xtZlZu1NlbvYoQzimCiglDJx3sXJxI12dOlPamGr3cymZEkFtJE5bTyxBwH+YC5N2TmKczwv1rmGejkB3IFe5g+nJK8Lb8H17B36/h+LByDaY4uu+eFDrAcSpx/EhcbtL+3nMQr4AazxOr58p32X0tHd5ol06xAbEcFH7mw7QyDHzOWZsCmKZXoy+NGxJnixFYuid7XHfBepaY9be8Aq2Kn3ufOfy8Pm4t2glEKLetm5RndZuqGS2NiT1+rUbEkhqiUSvBShHutE17J7MW5hvz/1uG6D+nfJUZ+5yYZHN2+qWwppLdkCaUz48sGYxqoiPSHAwzKzOZd56flcBfl6PSFiu38NVdxD/3S6sK4RH4FgoMWhvoD2yzriJJbs/oGUQUaR2X2Shxm+E8LC5NuU8dV4eLvy6h29zlzcWrTzVxdVL2uzWPNvMpWRaTY7I0o6mts/OeqDJ9GY+aSasdaa28JBj1FH+iJxckivrEMq+XokkMKfGFw9PLNpCCM0X9NYzW584t4kR00pzLtTzBWbw1jY5FmkkxphZ+OI1Fq07WOdcJ1esqHnfqUZebW99SK0lak0M1/XbD/RWamxvOQnUABJddVXFJaqSI2mzdqbc+dL9E0se1k0TWY0X+YLmwqU7Z2rriQ8vd3GaMT/DHLSQfI5pJrsx7zj5rMZx3vjg8MT7i9NOrjPG67X02YoLG19adgFj8zbW2Gz8GYU3bWEAFxy9a5AqrSulC4fs1AsVd+g4l4l1nSiXjDxldFXySchnIZ2M+VHImz2TBvzen+4nP8RgKtALSDE36n0Am9y6SCvIdvNq4u1PLTC98Q+4LVfrJANQD557ctveOt/hMGH+PLtqzFtvbgTHVPx8+g6cyfSL0e/EHWCSucpOWCjJTXVlN31YW6ISiuB8fZjtt4WIJ5SSXAd0yu48cbdszGkIonvi1GLmXAK81a+3N8tU/fGpY6Zsu5+kt+VdBtETIomW5VAY+mA5MafmFbpmUrv2hToa7XVHXWfxczrmt7s/PipYe35XAX5ej578v1sLltHm2yvA0RIRdrukHtVgV/ca69VnBSM45rNvGMcC5QHKnaBNaFunlYTdCaUIaW6QjcuWUBb+bvmAL9498WJeuU8rBzW+MDcmOTBr5Y0unHViE0chtiZBqXD9UMAVQ0Qw66zmivVJIacxjZQx66d3J6BDLAy5cveaOTfol04PvJxX7tLGMVVUOkfdUK9JufSZhjJrpUbwcokuPnZ39IzZYqbmM8Fu2QOPVN6bzxEMCqcys5Z4z2jwnTw1thjY75vM2ASEmx2NaPFeA2IKUe/eZIc3WlAjRCPrr8o/fPPA3VS4m1fuporReF1nFnWC8eDqvZpPLGli0plLmYKblynNNxtNrs5S+1UarXbhaZ0Qu+dcJ95bUqjyC3PwOwegADqTVrfaobvXYnMfwEvY3KiYy8Jp222gSncbJhFjUqP2xOPmmpUCPMwXJnU5vlOasVOmpETPSsouFVjPwnS2K1gkjk97S5MaEPyn+PoC9cEtxUCunFyBno3yALoZcsGthQZXEGD1psbwFjR47swTYJc2OR0CDVrEQHiPfqkBHXLzuX6bBZtAMtDU3SSm7iVs7h4IA5F6e5FMDM7iO3KyKzJVuGbdcl0XLnaQ6VMEui5BxidAOC0cUwzU3KF+iDhgrMV5uqUJc+oBBIt2NjGzlE7CTbVrdIYSnW9vB2btHJOrvhxTdz4gHmgVYxLbpdQWrQG02zWfdinEp5AX/KyOdwHw447kN7UqPsMLFJkpV1WIcQPDnhnms/f0U+gkan0O9TBAi1EPEVyaYNUoIu4/duikue18n5y8cvvg/sTL+cIxFTph8FoPnOrMU1nY2lBkcFBHzs4pNPPA14dtUlRCo12RdJyf3FSAPi885BrUi+6Ui8iye7g0PCyFg1aOKW5yOsW8xXdqXqUOxKBv2HkXxh7J7/PkbywR/yqHGo6KcZcLU6Ac1+5KLmud2aqr1FucswTgZn8n+vZrjAB4W7NcnTOG2o1gzHPbhcVHS2ycpaorryDCqR7YeuN+XnlvdkNfVwOBZj6zvQxd1aCCTKlyyGWvyEpXDH32Oqr+Ol84nHgxefV/nzcmaY5k7TmURnQHHhVz9Z4+KslokwlQwoniXJfQqJT9s25BjsvaGSpCT9uB8zqxnidYE2xKvii6Cfni1d9ujPspSaF9t0PxtVjuhO19od7HLywCU3wtzau2fAp5tg36jJtSB2WhJ088e+y9WtnpDqNCHMFtjz8SIw5uXivebNfr36Tq7VJVIU1CK0Y7inv4xd/v7VoDqU6HkA360fy59pvVrlXruFdvuhiaHeEp6oPK2hNLeALmZC5sb+wAtFvN2Sm8OoeB79bSHuDmdE2uwN1h7nOJFvkVzNJxnmJDKeam1aPjU80RxYdUcD1g27vO4/dPZeZUpnct0M/tkZyw2gXP4G7nDCMjk5usMEjCo7KoCztBfmSNo5sBMD12l0Q7CJfkZqMtuQJDq4IeKiQHcljuvL4ckG6sk+v9tU60GAr3E5TmEmaSYcrVw1lw6/qA7ptwpRRAmpw7ZxJSWmJMWoMR4WVa7YkqhDxa6IWasmilGaxNEQkgBv7cW1MmrZiZq9GHNVISV7m32FU8o41Luq+DwWMaW7jXpVvLrJaiHWtMVJa8odLDSUF3JKe4HUUgOOU7AqDF5sKoauF5Bajdn1u9/QN4dRkbSg3pp9bFK6pAi562CevCm23ikFso6ARoSCs9u76P8yOFc0ks2ZVdjtPqAJowx3WwBNyllbUkFlFyFp7azEQLX0EHLlhTLiMrM9dydISwA2Kqyf5+wTjkDcqEO2p4JjSlUdJImCp7kK5JsSzUzRVhenaqRJsFXcVJ5gaysauPfdpb2gBQaY0KcIM+ybMX8zmkkU9AjB1McJRoBtSoSWhTVJDhHOHIUiLKxguO7+MYajKikFp8Pbqu/a1272iRKrD03cEdc1k/f4jsllMMs22ADVeGSdcnFLgxwXUQENlcDUq8Xd+7/+wkE4eDz+MnrUjPfp/CLi8IULuv53MZjjI91o2jvJO4obUHvu7jkuDHAhRTqs1M4tzR0sZ9nXhaZ4Zi0FkTD7ObSk+hQ1y733NrS7zZ5nct0M/rYd2uQtjRBrHbhTFudPDWC+6aIqEqL3GziviAWW7+RiwAhZtXRodvC+WlsE5gKdFzp5dAFSqctoUkwpIrC43hrusOdIooHOeCS25lLtvMYaoc50JKsJbGaXUDV+sCJFozNgyZ3J9sVIQdJWsLiPK45d0aqEeVOKW+26zM2pCoSJZUETPucuVNdZeFjlcWns3uAm4MZQl4Hvx8G+tRy4UVU8DwsvrSygopOxCjN0FUWMSNe4s6Kq51cTDOzWvY/loj3/cgrHqt0sfsca2TOzikxnGqEWiTtw2174IFtSff4BQ0QzFX0N+al10W86Iu3tfai08BcArKFLwpMA5Tp3XbXS++vd7x5bsnF1xOjWlUoyRvqQtUNVKAfmqAo641cMxoRPZrruZBvjNg9fu7DyFlnzU1U5a5OFS+uzIQBfqsLg82gVWhF9s3kx/GViYEOV2FXl2AQsRna96a9OxlgJ+nNVxbIiHtNcBiYpgKbbY9gMqN/udok952dpwoDhIO9C2k0UbCu1eOo6qTCI7F3EMwdfoLc8K7y7NgzZAUn06CVASqo11tPMG4X9++Eh0nKeJBMGnI7vUMRfiQI+8dLrxcLiwHBz19dDlwrsotqq9YQsL7E3w8UXuiJ3eIaQbnBi8mt0EyCuc2cSquTIVBt4lJ3W+wNUdkT7lzqZm1+h2x9YmHeQM8WFYTzmXi0jKXdX5XAX5ejxTyR0K0OW6rv5uBrkQLJa1O2NVQxtdmpJj3fbdDBkjMwvssUlYpChuYJJp2RDspAWLea98O+5A60Xye1BKnzW2LWoP7ZePF4eLCzC3xuLoWIebqEeM9jBZbacpE48WycUiVRa+2Kk91uspsqZHpXALhdVRvgc5SXAW/e7VxqjNvyuzKMubVE/hr1qgGPRD6Dx0U55XSIMZP0gMAU8GEU5/YAvG5NneybgZzdi3SFEOTpzIjwGVz5/hBCB6tvvHms7YgfvcdSNLblQeZ1Mt2B/EocwpjURGeuoC4rNn1+dnRlJc2cSnXNH5O3mOrzeeUdajNiDs7aFSIp916ytVsJm38P199g6/cvXHNVYQtduluwtrVwVDdwUDj+llQGuYIZkA8PiMoNc43qWuKYl4FSLRLA6/F1pS1H9iq0k8JOSvpjc+x81lJJ3dFSTe2btcr/OkGw3L0gKvVmF+7SEVajTh9tHVfi/b89c2gH3yNlbtY08HzGy1PE/aRRn87CN4EQ9KV3aDVv4+cLQKWV8b9YJT3GnJs5IeNOUYR5Wl2nt8mULw61c2Ddn0g+ML2/PX3Fsl4Qx4ZR+LSG/SeSKljllA1nsrsSa0Yr0OTtLXbzD3GGAFaGRfqmCtfWE5M6sCzF3nFEC4tsXa3SBrKMg3IQc3YWqb0xKUm1pK5DPUjMSZ1XdRHmZ+9/tNlZl2ndxXg5/XwRe0ZI/B8SH7zeVm6oqotMmc2oLinmRYjhQeg+FNe/zzmFsu3Q0njImwvhbIq9QHsqNQFbHGe32EpHCaXMnPbE0fzHSMAXbSR1SXRvvV0z104lb9/d3FEX3EzW+ve7mhNufTZW6YCry8L25Q4pMQxhJjvc6EEmrF2cbHlKGPPPWPVN+W75GRwFeMuOYT+qcxceobu1UwXN7hVbKcvCLedJ6OLVyHNlDUq6yydu7SFdmeC1Ejmz1N7Yhg2AdxNG5smUmpsZXLbp2dZS7SouxOE1RwElELppYfAduuJtXgrcM6d2gdgoHM/FZbUXBXfxvzNW9c9gvFhFxlwZX2BvRU05Ne64UmNOeBo0kbWjSw5ADHC33/zBb55ueOr96/dSFXDv1GUWUC1kqS7ryGJRI9qDwbswANtJ8lGtUQWJYu7Zmwt+eOjXPWqx/9moZPuLiy58pgOrE8LbcrU18lVWBL0iweNvF7Rlm8tkU/lmE5g2aiz7ECRPnkgUGeAeJU1hK9vziNfcCeI4sGpzgQKm71yGwFTLCrBW1Lj+Fd9dmgBoEkXdl9BFA+QxQLxLfQ1U1dF7is6N/KxYFnpmmBNfv1CSSqfCNHvqBb1eSDc793xfRfMEs2c5lMtIdLpfabUxFqTS+mlyqSdVbsjxSMpddnCEISI/v+lZX7p6QUv5o0Xs2c1szaWSBYndb/LLdzha3ct0hQyjX5/O4L5vLk4x5vL4p6mASxrXblsGRtSfJ/h8S4AfsyRHyFNnp31xRfMSPbF2EmyusH0BtIq6ObBTsCtYrYQwR5Pat/5OmoeALTdPEYF6YrVjh594J0nr5u2lr1yk8Ih+bzmo8vBg0NT1s0dCI6HSidRu0W7ztGU+tY953xEt0i5n4tzfHYpIwfbDL1OYp7VcCL5HJv5B8vJ2349cW4TmyXO1TM+d5B2i5Vjdgj/qc77m03CPvPLauGr5j+btHJIlYMWH7b3zlNVWsxWLQgYQ/nEW4++ONdtDimqm4svo9t3VbfZXRBiXjiC8rVFqpj1ILgLKWxjzPAWKS755ObE7sTu1yKsh+Lo+PD/qvYi8f79pjjmSuk+Q2nmUnD3U+FLx0d+/cM3mXWg9BItZig1OFiX5lV6imBnWBiC9N3Fez8Pc1uspVcu1VtYzcQtuBhiBl6HaxJqdeeMsk1s54npdSI/KtMbYzpBPgUd4YcIggFiljZmcKG/O4LcaD++9TfjUvcZ1pdhrzSxG/mOqq4H4O22EvzO4BOvFU+st7SnvXqM6u+VIa8qdled49eFeplgU1iVdFGkQKpCn4x6MOy9BlMnJgY7sR/G89tb+8dN5wENxGeiN6PYaPkLjywOPNkFI+ym5S+0bjRcVD7TeXnYOOSCCLyaLrzKJ8594bEtbhkW99w5dHVTdGpmbaFCJX6/tByoc7j09GwO35tQ1rGhfnbHuwD4MUeuwnyG8hLmf+StjXLvAXHEA+kgq6PMhjxYz7g6SvP22ZBW2tFqbx1GZJHFmB79b9MmrO+5XmfTHMRfpR0qU4JN3GC17C4JvolZS95CFGNdFSYj5+a8HzNq8lmga336m2jdM/7avDfvotQx21NXl8c86Bnew3dgiQfIRY2vX+5CrNlh/7259U7pyqX77GvSxloT1YQkNQKG7BDr1r3lW8WYkldQ4K2aDY0hunDQFWHCLMdcZxjuOpetx0DmMG9couIFt4ZS5Vmg66HRun8W+zCHeG2j7ioHQtYasw8lpR4iBC5IbA2ciO46nG5T1QL1GlCY0Z6z24Dkf/fRZfGWUSpkJDwaDbHOL51e8mq+cMxr0FVuntv0WhXuwTlmm2JsTUliToUYruXillJL8s++dRceH43i/RoE0OcuFWxWdIZyP9O3RL0Tr7y6V37DQuh7xI0f6BD8dbQD7QpwgZu4IDz7+e3R1QO1NKNNQp+FHdORoCfb3e4h7gMDDf7s9YnY+X9tZpdJ24Ew3bC5odXgAlYyNplbL5lXob7gwJJQ1as9sY6sAhpI0KEkE9Sb5xdivEm7ft084RnJlahXc+umzNPQdb0G0NHiVq6oUp9TGx9eFg5ZeX85Yx3e1AOzNpJVXuYzT22m9YVJK63mWM/CU8+7C8UhbdB9FNBq2o25CU6y9f2NfOJ74dM83gXAjzm6eYarxaj3vvjuvgk15gmDKN+PkB59M0irZ8PgN7hlQ9fvHfzgmselBmxGy0qfhXwGJFGT0JPRZ65OD+LizSBoMrbqZqclSN+tKnnqqLpWIDhSccqVeWo8rTOXLTZmE2p4BXYcGOERG1Tc/dqpcN6WVPHZXetOPXhdjry/nMkB4fbqxVFjW/dbrA2nCfM5VbV0VW8hADLi/CB3H/fZ3V0uiFaysssrndpCNeet9UBUjudSdd6fc41SEM+HskoiSeOQ23UeN5zYY+N41jYc9khme7tHVX3+SqNZonaYc1RxqWFteCo6id5uNi/Bg03fcfXj3RMBzUNPCbd6FeNuKpxt5v3Z258DherVjqP13NXN4eiD7kC8TrEULde60yuGpc0hOcG1mit1CFcAjJq5i73AkptTaxLUKQj4ScjmUmSCb/w/jMD39vFshPDW3nn7rQ3T3FHnNGCOFmkSF6do4i4tBHc3NHqJBFYa9BrOF7cnEL3SHdUt1+9BSKdE/6DT7jq6eAXY1oRcMrYKaQ0pxOr3eseod4It/uFo7mjofJrhGqIjuo8gN9Se7PoegUDrGJhGkpXYigaVx6+SCKhdlab8Z/6vmSIBjnpTj8xb48fuv8GLvHFIE9/cHnhq6rQodfDdVidKz9xPgfZMnS0Mdkd0tT5UmMYndf36HQjmc3r0I6Sv+9f5G0ALcu0q5OZ3vpmRqvic7+xpVY8WhjR2aPjtR/7dDq8KPO7krcNJqAf/i559afduLpdkRkperZ2LUWty1GNR6H7ju6lukNabMIWslYjxzfOR2ryCG4VIiiqvW7hRd99YG04D6URwivN0uxPfSI8BBPloWwBhCzJ3CS4QEKK5t0owcG0xXr+adbTrjCnk1US6I3IRTn12OLYYh7Tx/rRxmSYe64HX2+LQ6vPswuBFEQSRzsPRhYKTNtbqJPFSvSqTm/MZSjQD3NJDCKB1ISdHZq5Vdx7Vkoqb1EpjJWPa9lbz7bsc2XYST0QEd8m2oC347JEdkq54gvNqPvNrjh/yKl88W1fnFQoenC7Vr0Xiao7rdA2hmgNshuhAN6goFp9F6S6kXs0h7E5g9o33sU0UU07VAQ1bnTg9zvRzhidFLyCrIasjGolK8PY9j/v6V+MwvCKrC/toYqw56x7cggO+63y2I7TFKA/m1IMx3qhCOnlCK6HNaZln9wlJ6GJYFprF44LusL3s3gV6SrTHhFwgNXGAXFTJ3aDfR+tz6a4YE/QGkzGH9dccNl+2J4wg+bof3BLlYQRku54rA0YzUrvrnDeFDyAQYBgD64gZCxv/r4d/iInyje3OgV1RNldT3qzucFKa8jBvrDXxVA7esSnZtWurA8tuV8H1vOKrdyCYz+dR7rwtomc8U8xOrmUz6gI9QADmMp6UF1cgANxkocNROj7zj6sEpcZaaIY0oZ59tlheZQ9wd5U+dc59ZpobOdXQujQ2HAFqRbGwUFltzLeUu2Vlye5gsLXqKKwWnmX7DEvokwM67vLm7gAS3mLqgaCLV2M9AsRj8cBzN23M2pm1UwXovqgM1zDtFq7wz9AF/s7HyGPtmQmXYCs2YdU36EUrjebIUylssXmf+8SsnffnE4dUeCyL61duM2fJlOJt0jfnhcPUmLN48EqdVRO1OdhkJCBjF6zNUXXOW/TdZasp/Ne6V47d27MtNXpyKsOkbdc4dBrDba7r/Ckzb0ceJ28Dl+Zzxuv2hrewa+Zb7Y5qygfLiS/Oj7sYQIvp54tkrJZZW6JJ0DHMQTASVWGPDXdSC71WvxFdHcYvfDP3lSwmoRhTKN3b+hm4qKGvOpe5s+VOezNhs9Jn1wK1AMFo4W3j8l+1I22+ftoiHoBiBobYbl+meEIp4t2awdPtR6Et5ijMyWgvbK/WtJiLVF874RDJyGhlOx9YkC7MHylthXrfPfAu0MtI9DywagXOoJtQ7hQ7GDY7Ms3i89LkbiTjeOYOAaQEpt3birvGrd1QbPYC7Fo1i59shwBhCTnWuMuiCaUNsrvw//3W/4Nfe/yQHzl8xEEr5+7anhot9cey8FTgVCaSGMdcXFkI2CQEVUXDqPqmbTuOz+heGce7APgxR3kJ9Q7yUwzN8SyzLFckGEJQICBfBGlXAnw+990mBn5l2bDiGas2v+HbJNQ7X5x2DPZqcIDKJjADFbY1Yy251NI+MHdFiGWufOn+ieNUMOBpWziVGVII1NZRsfh23buEyoREBSd7RprUEW7FZi7B8/HFU7m0mbXZXvVtMXQ3G61EboJfj68GECXI4qE6k2JW5S2/zLknijWHvIdEmtL5UgSFbsKH9c5VVraFjrdhUzJ6FY5LY86VnNyZ4rQ6QMZnE0bOnWVXZSEQtlE1NUfUwXCRSCxT4W5ZuZ82Zm3hJk9UcYK1diNrNtiPFhqMLpNmuPrLlDQANsmVY0JdPWvj5WHjR46P/Ojdtzhqifmfc7jc2WFyPcWAo/e4si3mgd7WbM6blB5XXN1A19JuXDruTxOjd+OpzVxa5s16YGuZrSjbZaJdEvp6Ip2U6dHveS2dvIVvXr92CX81j70zqZA3w1Zod0ILv0ATp020xducbbEQ0+77LqiboE/i630TZHPXCZtcEMOyzwr3W/jmTToS1I2BBfGZaACwdh3RaJl2gMlHGuXOsCXk0rIh2YOer7++ty2TsCsSAXtF2Lvfk26RdY0mIha8Xl//Se06+46/AV/fKQrIYRWWs5fQzZRfe/chP3J4w7kfOLWZj8rCkhoHrfzy+oLX24HL5tmGK075/LsHgMc6oSQiNwE8Rg2j9/wZHu8C4MccfRYu7xsHhHTGM8XgEMGYTwvJvDosi9/g2pwb1bIvOq0xFxxZ2D/mEANrYZ4bQxup5ooP9+bwc3O+V9lcx9EBGQ7OILItSUYpyqzKY5ppnaBPbHzhWDmXmbU5dLrUHPJm3mLtfaZ1t/o5hMzZcB73OV4L7chMaUJtCzm7HmWOrFiCzG4xs4rwGhVlY9bu7U0LpCXQO9SA5I9W4Jhb+dzQW4RJnM/4ph5Yewru4sZXFl+cH64H3mwHPloPgPkGXucwEiY4UiHPY+IVbQdRV8DwGaJ/XiqdOdmu3gLipsJtocyJOVeW5LQUf3/u1HDMsDaLvwmKR+irdvUZZpZOEw/SeWDpA9STpPG0Zd6kmX/Qv8CXD2+4zyuztPBk7Bx0Q6lsNuFEGMUHRC7lVs0FATZczWeKUihTY18yCmGezHVWO5SDFt3CeDXTc0MTtAfnnW0oXd10FzH6ybmzWn/1Wp+3hwA26BDJA5JGlc5k9HyNWtLME9dHnwPaaH8X83WLwRTJaySjPXlA6irPRm97+tA9QZbioJdblOnoBHRgyKZ1jLQaXQ2Sqx1JgAU0WtIiIXVmwXONbgwS3QfRoD5c5+AjMJuFYk9VTBspORCsmDoYrAtbUZ/lxZoSoFUhZUNS5/93eo9vrXd8cHgiifEyn2mWeKwzXzw+kWk8ysKbdaGHy4m7VUTww6OrDVH5/dzw7+sP6Wb4FR7vAuDHHF2M7T3PipeP3FpFumeC7Qjl3qutuuG/Xz3wWRbKnXlLaPPgNySifqWHGhAq81pwLuKEt3PwANc3Ic0gc4tWD1jzAOidMO/NXlLmQVZeLitL8NlOdSLHRu+Uiso23NV7wrRTu5NqXc1FOObGIRdKOI6Xnp1y0J0gb1UcBm7ewoSBLHy+HbbgHk2p8mo+7zD8rQXRPeol34ZGezTU6jG6pV3jcMprqOCbC3TLRFJz4AYVWJ0i0lJwBjNCoB7jOh1mBwYdJ9c7LH2Y1/rrD1V92/VFYxaKU0Sy+dB/67ajYFsosvR+o1EaDhKTVtJoo/k/dO207two/yCFtU3M80bDTX3v08ZBndxsAo914tzn/fMRXDXHZcMMEw2LG6V1c4CQuLoON/+6TJ2/r1Hpt1DqP9WZdcsu/daURkJKhq7kKoRWgNvpyBUI89lMdK4dFJGo2GbBciBiza94m41+dEm3QWSXouSLJ7pphTBt9ypxxs2rk9KOzeeFhndbAoxiLQJod7+9QdF4VpjF/m/N17MYtAP0Y4e5k5ZGXgpTdnEGlajkRtU3KkGx3ceydWErE1t1UNftWhM8odNkUen5b30PgLWkUPgxVBPDh1vExyhZfW5+Nxe6pFCGmTDgPhfOfYIErfj4pDbdDXutB2flu9wJNuYdXSBAap/V8S4Afsyh5ounvDK3VFl90UQb3SHNOKKrTsC9xLyvMz9CKhZcteD5fYLXNmJjqUY9uJSaVQ+Inqr7vKI1oV1C+uqUUBvWR/57cnfnMGmU5nM9VDlmC/HljvRErTMiQ5/FaM0rMcikaeNA5yFd2Cwj5oTa2oTW/BrUDlO6vnYL+HiS7iT2aWOtrhbxT919xBfmE79+/nqgGJUP6z0XJhRvnZ77xGNd2LqDMYbRrjscJO6mglhnlo21Jf+vJ5oltu5UhHNNvLnMlOKJQLmR8xHxGcsyVT64fySLt4sfy7Qb6Y6cZU4V1cbJZl/g8YvWlbUQqi2d+2VlpPe9azyHRQVrEShaIAeHzim7RmOpHvz9Z4aGi+p92jDgdTtw7hNKZ7W887GExrRvjp3SE5oSpypgKcK401fUrkCf2jREuB2AM86odwe/bFUp1UFUrSh9U7ceujjlgaF926PqCbeE21zvh7m1GYHeVO/AuPWYB6whZA+eDLTRxhyyYz6aAoK4Xh3xjckOkrEEdfY5f8tGP3Qfe0Q5J0GdoBlyUWS7EuNH238/0RH8gnLRDoa8V0gPlZSMPDUejutV9Ykhd+fApqzX++iYytWNnUTSiqobRY95/ziGqwPmIhSjFTOSP1eR8cdrEO9VjXlyENilJb5+vnf/vtSZpPNqutAQZt2wdmQr6hQgMw+iTeJ7eX4zwPVCiO9j0uQdCOZze9SY62SwaD2699iY/8l+c3eFKm6EaipsyVwtP6Sibjmsv6I2KJ4p5RVe/gPj8kXh3GHrYAfPbh0GKMjUPJM9diiKrg6AoQBtYquJb5iwPcxsPfFqubBo4/3lwrlmzhV0WZ1KUS1mY+72YBjdFmp2MvyLeeVuKmR95PV24M22uBtDVwqdpJ7/u/1Jd4h3KL8fcmNJK9/c7lm7S5n92sO3+SA/8iKvPPaF1+2OSRMHK9ylwlN3p4tLnyhdvBXZu2/Q4kTwl9OFu7xx0EbpMe/JFZELSYw3a+d0mYM36IvdzGhVuPSJr/cXvDyeedDCy3l1twTJlOrYyq35rOR+WSmBIB3K+hYLunXlcT0wp8aSi4MEUt8pEV4J+4zWqEyI8xLxLN+vaee0Xb38Oom1Cf/X6T2+0E58cXnkYXK1nYkhgi00SVQD99pQptTIeOJxqZnVPPEwS24tpf7ZHFIhh33S2idK96paRFwFKOZIZ/F7vQp0EUw6LcWsWf1fEcHOvoEO1aMf9iFcZ47U6Mxk5+6N8GNzJDvdH9MM1/QEd5dPYMm7C+14DWCpRCUZVZrgwDA7GH2xHfEJ/hzcu7ZoVUhndh/Bt8/XujepZRX6h5neFHmx0XLicVs4zIWUaszFRw/CYiTgz7Ga21sdc2XqnU0zSTaf1VZFbIwVfC225spJ3s6XCHJAAFlqHXM7CflD42QztTe3WZpd3LiL91S2nrnPG4dU+LUvXvMwF3758YGPLkd/PcLRpI4EwDsa+2F48DN9B4L5PB/SxSWOsmDJaEfgEJlukzDKDIDDTcKXTy69ND09T38+aY4zKoTyoK4vOJtbMqkhNW4qMQ92yZCzIFvQmDP0O2/XWPa/Q9yZXNRVWbbuAcRNLL2iSMnIoa05tDlfLRfupm0npm898aYcOJWZyzZhOJJsSt0dJZLTLbxV0rjPG/d5dam17cBDPvP+dOI3HP8RX8gnV4bpCxdbHFBiLuu1CqyhKrP1UCPpLkatAl0aX1hOJDXelAMl0JCPZeFcJl5fDmwlh7nt7RX1T2KeC8vU+OL9UyA7hY8C9AE+c7mfNt8Uup/LaPA56MDNgpPGnDLEEGpwHwd6FCzaWZ0lD0CC0Pt1+dWWeNom3A6p88XjKVqyuNuENDYyH1WXoZtDIWdJzvE7aNk/m44jZy99YrWJS89703aHLEsLIE3m0iYH7AxxgEAClpY4b5laEqUk+pqgJPTkdkh6AQnkZTp7suYgkO+S+P+QjjEj7ou4UWx1gNpe/WkAYULabCSWYlfUqJaboJegzeZI0un6XG027NAdqTmQoJ3oxgjpLOhFnWzfR2Ic99pO43PgTZ+h3hnpvrF84UTK3tJcct27Ab1lDPNkJrn3nkUiBT7rP1XX2u09grN4IoJdJQZhoFW9xXkrSzwoUtYHVcGvkU6NnH0dd1zV5Vwm7ueN95YzhngrVOBxW/ja61dcVu+09OoIdMb+FLO+MdAATyZGEPxVu1G+x/EuAH7MMbh8gFsjYTdGmNeSznC9UA1zze3eZzQ9hSfZsE75Pg4D5o96zCmE9QtQD0I/eiCkO/J0zJRt6Ujxm08e1cm1c2friRMzf698wBfuTxznEhQHmNUgd7L6TGuS4MDFEnK9S6hJmLNLpN1PKxrVQ+kpCPhKFSF3D4hZXYXEbArVkcKLfAYR3pSFv2Nf4WU+88XpkTvdeCVPPNmBjUyicdDCF+fXfFTuSMxeb9UJwYNgQfnF00vu88Zd3sLOCY6p0JrwYr5wlolVo5q7bYHi186a8dFp4cWyknPnbt5YemWtPh+5lMQUAX0IYafwJHT+nt8HIg5wGZvQFfR+zeHNhKct73zEW4h6MzjkQu1OMnZFHjikglkKwrkxfLWSCWtTjloR6WFVI66Iau7yfacrat5KXbvrMlYzmihr0C5UXFxAUGgOohlBt5txyMZqjvyt5tWBHdy3sBL2W138nleha8y+fzXBDebJZtdAZ3cPzpadqiQ12ppKVKvsLg54vPC8ILMDVLCgSDRPHrV4Z6FXdTJ9DqUWvOpti2G4rJBeQMcaNIZxSwRhv5YpDHm3rx+YXhamQ6GqsKR240spAU4yzpaY1QOlKwq5ZKBL3rlru4sROMjLtWBjfh4B/7bLOBxKXCGmI8lnwWbQildnvUHOSuoud3gumXN54QbQ04aViW7Cj9x/xEd6x6MunJnoluhJ/aYOnuueD9z+B+8qwM/1MeYb4B9Y8sxFq0uVSbn+bq8Kq5FXIW3GNFohP8ApqDnrQYv4IH4ybMEXcvCOnPjrPXWN3rupZ5vXNrw7kN8fVzSFrFnIXI2qqjafJZoK7x8uHPLGGurv3jLzSqRaouBK8lvPXLaJKTsHbnCQWlRphusEHrNXLDFlYtLOXfI258bMFu6k1SSqmERD2GyiiwtwxzQzUIo+i9Pk5O5LnwPAomx9Yu3J6R7rtM84RvUWEQtV47A03jtcuJ9WDqnSuvB6W9AJjPbss6vdN31VYZJGCa7g3VT2ALjWHO3OaLVya/nksw4Dmjnq1kEyRBD0ttWG8YXpzPvLiftpA4NTmxGE5SZwzsmThKN6dbBZ4txmVnMw06VP4aAxBJCjJghwQjNx70G7ar1azFq7XW2rhqNIKwo1uVtJFXJxgJY2yJuQVqcBfJzq0Q/zUPPZZFev4EBIJQjvMzsXUG7WtBb2db47RjwI7Wj06abVmSPh3J1U5FrpddzYtohXxm+hYIcCD+LKUOW9hi044vhYSEtlmhpLbsyp7u3nLZxDurnmrgvNExQfY2WiV6faVFNKc7BSrRHVxcE0ov5a4zyufFewWEe9XnVC0wSilWXyZOvWKWXJ1X05myu/zKnw2JwicdkmenWLNGnR3qzCd9wNN0HQhSo+m/kfvAuAH3uoyT5PwKL1GQsmrQYlgDJcsxvdfKiuxYfWXX3+8Ek/4pEgWcwX2xxZVBVk3Q1SYpDMTui1WNldjS52ffEGMneetpkGzFOLGc8wOpQwxRQOWlh0o3cJEWpfOW5u6+2VS/EWWauw5I0hgYb5fG20Q726cFDMijCpcZCGdKOI8sZm7vPGUR3EnwWSJi59oloOEE3jPl+YpHJiImvmaVuoKGtNbG3Z7aHMoPTEuqUQ4rVnijf7ZyudeSosUrjTlXs9M2vnwsSr+cKpTVxqopMBf467VJjVkZAfng9oBPfWjTn5tUFcU3XwoNxuip3KcWvN5ChMYyh5qPg1nlPlkFe2rmh11F3WFm4YHvyPWl2FQxwBknAwkc9sYe3KJUx7HY4e7uCB+DTz35u5ksfQI70lW9chEF4D5dhwBGP3uTY1ksDi9/zor3VhNzL41Tj2QnpsqgLpYrQcyWJR0jY+AKAbaQQC8cfXI6yvoM9Gn68+oM5riuA3Prr4z/rNuuvhYBnyYNa9BTn2hT5DX4z6onnwrIYcXY+1VeViASqbPAFZUvGOBj5amFJnC/9JB30pW5viPldqy7TGrrM54GwkRaRetTjjaO0aDK2Nfq5EwGzMyT1Hbaz9+Lu15FCQ6bzpM1s9+Hx0c9qNWEjMjeAX997bAq17GzT2i3cgmM/jUUcbBHa2aFioNDOygayhSj+y/AR9kqF3i67RzuCTbQj7Nmk+m5Cnq0SxqVd4zHhGGs98S7aVDdcgNEUOTrSt6wR7ZVKZckMtRWstANQiPNUDhvLecnL5NNNAkHmLLWnj1bL6LAvhdJlolphS9dmYiEPzi2eP97NrVqoY3RoXMpM01IwqE+cmsakXJm0cpDoqk87FnB+VZI5sEWbzCvJcnYxfLTYADXK9wDQZnea0jv2KXo/WlcfzwblL6vOj99OZl/nidkHamWTi0t3pwRCK5fh55YO7J07bwrlkJlWSFpZUyRoqGC1TmkPMu/l8sD8Lwl5fBqWLgTkVgdIz3z4/8PJwYU7nvSX9phx87ieNYtk33AbHJCxaydb9vTBuSBfI7gFxT4IjH7vLeM2pU7ojjGmurMMQGRB3iBc6HAoiE+vey/MWvEi04PFgmeO97kpIn/Ce/0GPPRA2f58pxCukd9osWCBxNaq2W2rS1Hx250HQrw8JvxD7O9k/rHjBwNfKKAr978QEDXm4oS8xgHB8mOgvu7dMa3KJQXGt29rhXITWOy0Lh9zIyXl7dDepRSBrJoU7b0veHfE+p7ew+02l30ywPpGn6u8/An5K0bIP4XsxwZrQQ7xiBZaZoDNJJE+AhHC9pZBkDHTqFOOhFNdtJHbgYL1x2W64inv37F0F+Pk8NIKf6DXTG1XgfHKJJN32pQHgvl4XJ8NLzEFuf/9JD4Odd3j+slBDv9BcdtMDXZyTjNaGuEZhnwxmc4NNQvtTwxrporsZbg7ndxFj0s5hqrxcVlSjPWqDywbVJramvNkWLmXmtDraIGlna5MLCJsrxuSpkKMSvMsbS6pMEsARnOeUxFs7B20hd6YUy7yuh919Iis8iINwStgteVvGZ1vSHAQgTfchf4/FL8lnI3YDSBlX9uGw8XDY+NLdiVkbW8uc6hIaNUYlufFud1qyAGvzVuhwhj8EcOEc5r+l6VuvNRQyJDLn651wyFeBgXHO7i4PXzicydo5N+daHVLhGL21U5u99Zm8chaB1/W4Q+O3ADSVQNrWLjE38iq9oW50G+a7oz06lELA7wPE5bK2klm3jK0Z1oReXCIsnX3GnTYHfg3rrx/0nv9e6+D2eT9uyxRi7pYBE1I1F5rfZcs84RngxDZDOwqnX2P0g4PG9hd8Jl0pQ2BpF6sYcz6tgsRGb9klILQ7IhUz2gHKvdFfNJgNiiCzoXNDkwXQytvQG5A10bqDsHIkT2/KgVOdeNpmtpK5rBO9RGv6BsRybbl665PU6Jaw1vcAWIsLWthYG+b7nKbONFeOc+UwlZBJlOt4xGy3+EraGZe1VOcCjoSAOCcJHdBbEMyzD9Xe0SA+t4cMgEn3YDikzyy7s7QWlwxLhXCi9oVTJ1zZX223i/m+Xj/+tQJ6Me6+ZmzvC9uDUB/M6RnKrm3ow/7gm1UX4O1NscnoU8e60mp2NGn2hZeSyxZN2Z0jPAvN/GJ7wct5ZUmFOfnwpJuvLA9oQ3eksdaJGm7TImPWYJy3ROsLZfKN+WHaOOaNY3KR60kaTZRqTs+YJHOnPk97oWfONkfwdfheNteUEu3o7EjITONJXNFm63kPPiruYuCWRN3FeQNUMM7zvLnN1FZe8upw4Tht3vqhYaYonfu8ua5nS0ElAJEenn+dbUhKiWvZTNqikmK3QRqHmXuvCZ4gmLnT/DSc6cUzbsF43Cbm1FlSdcpIT5TkWquLODr0VGeqJiatTBJAFkmhAzqq+oSqz4hsv6uMWQ3Jrgyy1RycUN3h82tN16QoN/TQKWI06XRxSKVF5dyTBOjLXUsGuvKHsaXZW/9+t9fY1031AGBCiEz75mzgbcvdMcLn+sevQX0Pyj30O9utka77tuxtVm/vxC/7FUAj0S7VkF6zagGkM6YncWugxejHjlWhvpnoS6NNnTw19w005clmtpbYmvpsMJB0B6lYuFnIZGw24cLoKVqPcnu6APRVXcFKfWaOdGSYPw8y5CDbdyirI4W3qhxnN1s+5BKtcmUAvEaXSxTmqVKlQ8zquxhs6mLdZVR9t5VgnOM7EMzn95C4eUUIaSWC+hCjteq97J59oxjZXi64/Fnb76sf6AjEPev7SrmH+uAVoWVzImkBbYK2GzqGmUPBdYyY1HmNs6OzHGFmWO/kydF9WV0zUnAOWzElWaK1QbgebRXlXCbeXBZXj2m6b5aqLszdTH3OqD4vmIIiILhNkai7TWjUW91cVqv1FJMsiYomBwBnw4FlnSdmrHobppECFOO71QiARrR6FCfqInuG7TM9YQ7y8V2uHoTEKzAH4YReIVeg0K0U2iDlWzyufsdW7KowIn23jQIQGTBDcRHvw8ml14zd5PaxTBxz48V02Z0xNDimAmyWUYy7tDGrT/4aulfPm00ujm2DWD/68zCJka2xImwd1jrFpkbMYzyb92AY76RD3TK2KWwJvTjXNJ+FtEIKE2gtjgCVHwIIZq8ob4tr+/hqUNXn5yKyIzHH3w9Pz3bnXZVyNPqdryuOPUxpvV9qAtRANVZFQiZOBHduiLGIbCAxKgmGUqBN/fXL+51+iHPvCqvBoe+fj5lzLNOwJhI8xezGm3Zkq8p5mwLoorSLfyayDa018x19n/WZzykzcbESvUapR1TJO2nekJA/m+fmwu6p7gCuFrPndpNADg3f+AE5uw9obQIl+QywOJhqAF7ijTLQefKuBfr5PTyo+D0ijvPww66foaq3H4mWiEZPIKp7rxj4wTaElkJgu7i3YMo+rPc9IAKvDFUKf2ETH7ST8CA5Zho38HT/e9cTTKlTa0KSm8aW6tD72uaQY/IdxEJaaythoSPRBumKpDHHakGE91DUu1eWpQsirprSTIGx+N2HbMXVKgYBw6cPnWbwui7eWemOSjwVJ8abmYs9J59fdMzBGx0gUYrEZxCDn32zcWDOac2IeSuKG9kyxfxcDBrCpIUJoQYidS0ZDQfsazXSd7Ly+Gwwr+pS6vTmGxqE0ot2LiWRpO8AmK2maG9WWnNvuFmcMNVNKQgJ3BTYwpMxHCs6bmulJCZxf8FR0RXSfh0KbprsCiPeVt5awrpSq2/WrUEfIunNgRWyAcWQZlD9PlCVXYYtBdXgFnv1aR2GtypHENRyneHdBsERWyDWrbikIQKWhKB4ejv/EKosGUg9qCYdK7FwU1TRBuQBCGle1cA1yvXYD+Y4oeKEc6lKy+z2Rvm10orRhqB2FlgV0+73mkZCLQamtFVYyT5SEOhbuCq0hG2KNqFXGDpT0r3qJegWe7A39nnkFUkg11JM/W5Nye9TYQiyJyzUAJI2b+PvjczQIxanCLXua61XUDNMGmaJfSGPynkkguO0jXct0M/t0byFaXB1gB9zvZsejFdiREbqG642Yx/08vGZ6nc7btsY2p1kLGr0s/OQ+plQn3DYt6xyk3lbkJ2jDTThQXEYzt2AdgC6KNuWmGfv62ucbe0O+lDp1J739ybAlB1VWCKdNnPvL0cGufCyakO1Y5LYOiTrZIPVEotd3QmG+Ws3oZJI4jBvDAcWmOz0LDe3HUi7QYfw13c3dZ9zFPNgqEkcXTeMhMf1NfcsExHW5snF/eSVoLOprj6Bk3SaOBBgSsZEWB61zKVKGJayB3MJhf2bT5He3ZlCd3slWGtGJ6jmAt4HrcgCj2Xho3XiYb6wRC/RhVcaLSq6p37gLhWOsvrmeFMOZa0Y2a9TlO1JqlewCLM1mhgPbDzJTNsSWb29qQH4cSinOgK0q7fWRJwvpqBJHQmKVx3W8ZaYXTmAn/Se/8cdWrzV2DPU7MlmWnmmsgTepRmdD4sKcBiQayfWjIPLUDeidu3KcMpLI/jF/T4qnck841WDzSsY866fOznU6K9OvqlX6aRNsFibALoJzNFEvHQX2TBv3TcBnf3iCQSXz7+rzWlH1tQpC1187ledbiBOQGWgtUni72HwoEbMBhgk+XHRDPc37IYG5zUlD0qeTnn0mnKD5oL5zhMOTqMQnGJlle7myeFKI7EPyY4CtWswjP/eVYCf10Od59Sn4DZd7Ao0GcvbvA2pzQExqRrpYs+e5lf88Y6K8fbp1UW362Eg1IY6RbRhOugZ0nkgCiNHS2ApuIDDGy0DU3fVmKH7lwzNjWlqTLkx5+bO8PEWak+7yvtogXYTLtvkzvNlZAadw6Ewz5W7qTh0W33Vixiztt39YFanDyijLWqhquUzNGEkh7K38cY1L5a5tMxH25FTnXmzLR78IjN1I1hv1VxW31hurZ6u/3bmqTHlyt20hUvEcLx3ykM15VyHMLZwSBVD2JpyqTPnMvtZij9fVnPNxjgPd3RwxOrDvJK17+dWu3A/OXL0mMquNlO6UxHm3OgkSsss08ohFc51ppqjWu+j/YkoFeHcM1tPbC2H5RShAeuf5WY53o+r6VxqYqs+W2zdk4zWhFoStWaXsWoKZw1+m6JrdEW2oYYU66K5EHxahRz3/t6y/JQOw/l5fYk1V4HqXY+d3xf3zfaeW4jpFqos8ZkPwIspoC5d1maj3kdHZTFsoL37sO8R1+ANWL9YNOhNMDoysc8KbZDjRxfgok6DGoGxgU2EwpQ52nTucNdg7uTZuQqlQq/qHNEagW7zJITB+41//VpHh8eLtgjIfi6SjHyoPgsF2pqwOgRN8Qo3Gyl37u9WR4eOyjqCVg392yGUP1I9jVmnyHBKUdbLRN8SnFNgErx1fK0dRxuU4Fi/A8F8bo/RwtILe0bpe73FhxftgGg/9ikqFr0FxvxKX4v9nrzpFIBBOlnYtwjlXmgH3CliEVrxGUR98A1Igrrhc0rf/WyGNo1ZhMAkWOou5ou3O8SS84c6u2Gs4MHr2mq6thPn7MPxIu6PZyaULYULtHCcKyW5JmhWY+seiBw+LbSuLGkL/p5f6463ScfGncSdqSuuSWomZBrH1NHFWAL88VTd2HcM2TXUCw5L8SDdBnLtWZ3AZc2+6VflftmYU3XPQIFuGRULHqQG/+qqnvIw+ePPZdpng92gNJ87+nXz16tdeNxm5uSt4VndLqk0ofWJ2oVjgIoe8sbWG6c60brwZB6ATzpxTIUcFeS5Odn/OBzpaai6M/zashPYo5KTmPupdCR1Nskk8dbr1rJ7HXbFRJmmjkoJayVzo1ZVb8uh2Ba6lDcCD4obRJt6u34owXwa8+/rpwX5yeir0Q7i9/ydXHm34/UM5teehNY7B+Vg13MZVaSBd3g2b1r0RajF4BDantmVbW54Ki4r2FvoueJdlcouTO/DbH+sAUxuTFzU0LP6uW5eGTmmQNBH9QC7KNsi6NzR5J+l0GjOK8JmfKYWEmNjdCdjzhJB0XrgApp62zbm1zoFeCw7/8MT13gPzQPY4+PCPDdyrrv34D4/xhNU0Roz7XH/JlSEnLyNf3d3oaSJkhJ2zvTNEDQyWnmmBrNzAT/D410A/JjDYk91mxMnvUssmn32C5HNOOhFi+0iuJ8kpxl56mi1joGjEYvz4BlwPbhihfO5zIn4dbSCZM+EDZzDFOrzJAM1ZAbmjk4tZuF2NYSdNqZwPB+Vw3BLFyzao8IWDvKlKa0mH7QnmKbOcVlZJqc6HHJ1hRSDSb2VeMiVRRuzFha9UY+Jd5vpTNJ2KHdNPtu4RAu2I1EFTjzVmTfl4EFonKd4sCtVqTXdUBK+yzVXD+rz5HqLy+S94bUrk3bUjNKnaEE6kGcn2rfMuU47beAweVt0SZUu4oi5qOYOubCEW/xVFcYD9aCBZGkcQmXj3CZKd13TQ6507S7vFtqdDSWJE+O7JUpQGwZo6HbT8ltTI4gPMI8EZF3ZaqLUiVKjrdWVuqnD2DdFirsc5KH/ucacu0f11/0+zKu3kfPGD8URXvD1WI9y5eSKjx9o1zUqxMz8IO7/F+upE7PBBD1BOzhNqIWqks/II+Dl+ID6803a15Q5jYEINBY/y8bQGt0fHNdQLx780naVRpNITtu9V4WDqtSK3zd0HHTUdHdNEJMdVHMbOK79EdDuc3o0LkQz5OgfiHWlF/Xn9b4kkjuSIU+Vaeqx9h34tQu+7xWh03kGfWqML7plWve1UbdMWxVO2bsGGzfDhLfW4eegBar/+Ic8P772ta/xe3/v7+WDDz7geDzyz/1z/xz/8//8P3/Px/93/91/59qIb/33S7/0S88e96f+1J/ix37sxzgcDvzW3/pb+Zt/82/uv/vWt77FH/gDf4Cf+Imf4Hg88ut+3a/jD/7BP8hHH330SU//Ex2WI9OKzM6VXcR5QxNxR9gVGNBtWFz5338/r2nR3k9GWZxuUe6MOjufTYshZ6D4okgXz4JbhvLQqYd+HbyPzHBsVOAZa4G+jgG6O4D3bmwlUap6ZtegVI9CKh2VRhJXrlAsgBsdTZ5RmhmtCes2COC4kkrHHd6l+fyrS9R6MEnFdVUa3sjrNITVlGoxS/Wti0TDjKgk/ULNUjnmEs/TKU24FI3z9kUqoz92vcKMBqtFe6xUZS3K4zrzuM7Uplxq5lTzrpZRmoTl0tW4N1HjffnzLWnYfnh1ukyFOdU9kejd34+H8TaattFado/Gc0skaSzq72uriacy8Y8uDzzWCfA28qj0Li2zBj1DxUn6WUrUf31/z+M8h7LOpJWsjUPeyFr9WmH0oPPsRrAOcfW2X/P3Jp1QRLIAZkWHwiK46Kef2BveUZkejXTqyKWja0dKdDHCCaKlgISshm5+Xzdxs+o++bpqkznwZHF+k9Gv68VwsE+sDVOL4BhjA4jZG9d5ofi1ohCqObHOGn6vZX+OFh2X6y0o6EnQJ0WeEjxleErYU8IuwaMz25NtiwG8jVllBJARoPYwY96ylk2gCPY4YR9O2GOGNTLLMT8x/4x7FbY1cdkSa1F3iOhQK9SC6/yuPoOsm7JdEnVT6kUoF6WcM+XJnz9toSol/cq3jDU7qtX9BrF4X5/R8YkqwG9/+9v8tt/22/gdv+N38F/+l/8lX/rSl/g7f+fv8P777/9j//YXfuEXePny5f79l7/85f3rv/gX/yI/8zM/w8///M/zW3/rb+Xnfu7n+F2/63fxC7/wC3z5y1/mF3/xF/nFX/xF/tP/9D/lJ3/yJ/kH/+Af8O/8O/8Ov/iLv8hf+kt/6ZO8hU90tNAC7IBMUQVWz1hMjTYLWh39pk32KhA+WfU3DiEqyxjiOxjMs9i+uD6hBcxwbyWI+VymB/n7YNSl+9wmeIEa0lw94GTu6K6Ydaw5erN3b911jDHxc3UKZa3CnKpLks1baEsKSTUkoByIUpuDU0pzCoC36wJSY+bqHEGFIAbsBy3MOlCM4UgQYQJxVOWiHcGDquJIzJRczip1Y87dnasaEK7x7ZkDxO3sz38mcQFrzaF60t1XTZo7YzQH1bRAwGlsPAOjqsnAPNi715+x9syL2Wdza/OZ25gHuYmtZ1JzVL0tsqtmFoIBbixMVc4iEfaVS5s54JD0FruhkMKdw/H4PaoCrywlXAWcpzn0PCcFsc5GQnHRcJWJRnVahzmvtaP05J+RNYk5jyeDKeZXOioS8y6E9DB+vpnH3V7xH/QQAsCSA2Ea8nFwbfkPCpCCnzvxOBwpPWbnbhbsaFc7hOZnH9WV/61EJmqYO7CMThBjM49dvUlw//BKcGSwyA7AMQNVcSkFC07xePjsAVN1dIDSc8sG9pwqdNDjyt5Ii+1dqLcuuvTQ2exR4Qb4bdA3vJrtdBNyElLyqm6IImBXbViPt9FaHWDqZvv93Zt4iR3AHNncSUfbqFbj5Ea1N6o/PtsK8BMFwP/kP/lP+NEf/VH+8//8P99/9uM//uO/or/98pe/zHvvvfddf/cn/sSf4N/+t/9t/q1/698C4Od//uf5a3/tr/Gf/Wf/Gf/+v//v88/+s/8sf/kv/+X98b/hN/wG/qP/6D/i9/7e30utlZx/OJ3cPodH2Pn6GbYUgTD8vmTzgbzc3LQ/yMIff9fFCbn1COWFa4H2yTlX2q4DZRPoi9EWox+bB86LeiZ/w33y/SL6mhq8KItNIFBfLnwLpWU2s10Q+TAVRxp2YWXyQCS+aW8l0HPNh+lmkKXFRuG6lnMEw0k6WSpHdWfzg2xMdJI54KOZtx9ByNKd22YWXoCJU3PJtdqFp7pwrhPfPh8oJe/u1rdam7dppkZfrneXgUrJqFVRdWPYc5nCMNf/MqUelkvu6afi76XH++qmZG0s2cnpk1QOubozPYJKYWuKRLA9aCFHouHcQjfazXQWdcDNpSU+LEfWNnFpV88dxfeaS01BmO+8mlbuc3HOogmZviNmDd+0tlCF2QLE1E2o3ec2pQvgwIXz6oLnIh3rid6AFdhATuIKLxukJ8jFkNWh7ljMujt78Pg0g953Wxupjk/1GaTCfxbo0Hp/Bbv0KWZ+N04PkoSuHVtc95MgqkfkZOh/7jqgsHeA4Po8GA4qiw6RNHEPzu5BxPuD4h9etDGJ4EskU1Y9YbEe8oZ4F0kG5iAAbENkfrxZ+Y4rcBNnvuOI19qVcFwakclnwpp8bdTqAvGjSjUDa0Gl6XjwiwAoXZzkH55+6maRvg/cjGLGeSne5diT95vP9LMEwXyiFuhf/at/lZ/6qZ/iX/vX/jW+/OUv85t/82/mz/7ZP/sr+tvf9Jt+E1/96lf5l//lf5n/4X/4H/afb9vG3/pbf4vf+Tt/5/WkVPmdv/N38j/+j//j93y+jz76iJcvX37P4LeuK69fv3723yc92mz0bNQjz1QjxsJqB6gBSmkzu7TS2Ai+38JeukO059ewfGQs34LpMQJxgrqYO1aL7cE4n32grhf1Yf1dp917C4IKegK9iMO3N0GKINHSsKrUktg2tw1qzVebRmrpNigufg1e3c3JJdTuD4Vlaa5iYVBK4qPHI48Xl0p7qjNP1T3piiUKmVOfeWwLj33hZBMXcyf4RVzuaxJHS/bgsM3hd/eQ1qgYO/ep8GJa+dLdEy+PK3eLy66N2cTzIHgVw07JW46tic801WHftbrk13BnaM3nIC6D5mjUS41Zo2j4ADqXbuuJrU+c6sy5OcLCZ6AtwETGGuhVryS8hTxmcqc+Y6IsqfLBfOL9+cyLvLkcGU7JGET82v2/1+XIN7b73R+uBnlFxV9PxZhCjPygNepg5xBm7a4Eg5OZ75aNw9SYkjEvleVQ0BcVeWj0l50aiVh94UlZuyNEFmSnJewb9e19/H3e///Y9RH/6Vs/Izz98pPbI+0Ame3q/Qd4rKtCfqPkD9UDUzzp4Ox5fJdru05u/us3L9rEeYPg7dAZmEASiKoH0LFX3HW3a7oR1h4yhlrYUZPJ3GlCe4iNDzUpIVqyUcFd385332uefQDXR0gXb4+uCSuJvilt84jbu+7lrgguJRhOEpp9ZogG5ziLo83VW9+WQbIgGqOu+J/eBMRPExj1aRyfqHT6e3/v7/Gn//Sf5md+5mf4w3/4D/M//U//E3/wD/5B5nnm9/2+3/dd/+arX/0qP//zP89P/dRPsa4rf+7P/Tl++2//7fyNv/E3+Bf+hX+Bb3zjG7TW+MpXvvLs777yla/wt//23/6uz/mNb3yD//A//A/5/b//93/Pc/2P/+P/mD/6R//oJ3l733nMTpbNZ2iLtz+1sivA7O0fnP7w/YBf3j729SW+cMpRKC+Feud6gtIhnYhW3IBSG/XYYALU0FWRUOrAolrMCtVIOFKsN4ND92wuBV4muYoLcjVG9dao0c3J6xbiyUndrHMt7jhfQyVeUudwqMxzZcmNY27cTc5VS3ReThcOWkO+y53Ll+QtuFObqZbChEjcf647N/CqcelAj7UnzjXz+nLktE2sW37L9sgNPefcWObi1VwPUI84bwlxBOx5nWkBWhkGSHezB9S9Y2Oui7k24U4LS24cQiljUFckZqNxazBpY6Yx+MA+/RxyY0YWY9LKXXIz28c6Uyz4lqHEsoNmgNEu7aZMkRB0lFObIiB0l1KLm+jcZtagRtSwzAGhm1FbSMMZe9AXhWSu0MPqM6l8UtJFyE9u86XrteqT6nqX8qtQ/X2vY6/zxZPD9X1x8+jB4xPDpuss3ysOEJU92GkJ4YSMg1HS99ilDYb4t68pQVJ3ysHg5YVV1C3EX5uPI3QlLJSuydkQeDcgdXx+mAWS0ZNdE+9xH4xWr8UedPP+uf332UWKVm4k6IaFp6HB5JJ4ksJFvgGmLuOYe7RBxakTA5BT9QrGiXnwc4BOjDns+Wf09j0yOsmf5fGJAmDvnZ/6qZ/ij//xPw7Ab/7Nv5n/7X/73/j5n//57xkAf+InfoKf+Imf2L//6Z/+af7u3/27/Mk/+Sf583/+z3/iE379+jW/+3f/bn7yJ3+S/+A/+A++5+N+9md/lp/5mZ959nc/+qM/+oley7J5exEhncznIt4p3DU3e/LZVjkQclDXv/9+Ptv9RulANfIJf8HuVVufzL3NBtG+GaRGan4u1v1fjRmlVHW0XvXl1pt5hpYBFGve9mr4jLBnCRg2oabCjghrXX0eFpVP665ysiTQqdNICJ1alVmFIr5mTjax5MZdKlxqdvFtBBFfaGvzFt0kBei0HtQCiBzSKRmjagKf01kXJq3MCmRc2DlI6XOuqAYpvAPqWqez9p1075uZcZgLa2lOmeg4OT6+TtpdCFsMEdcGHdekAsdAutqeNPjHlQNU4vfB4EHF12E71Q3WsLjRAKeoGGfLTOqgoBItX+O5q8XaEr98eeCQCocI5obt7VpwA2LMq9wLU8DdU6h8jHlPcoukqHhaVdeZTA2bwXrCitIWQZrrV4p5VRX7nyuY2Geb3Rs+nkhP5i3HSaLtKW6GO1gygQS1CFBqXlWJEEIRPK/44EpvAJCrpLP00Aut0dqL+8wzEL1SEvDZumVHkacIYMMyiQAcXZ3mvfPkbyqedwQv4Yb7OO4v35e+4/LvG9AAWo3344A6R7ngydaQLIu5Xu9CU0WzeZAzl03cwQnjFjJcE9ZsR//aTUkqPD+v59/bVYntMzo+UQD86le/yk/+5E8++9lv/I2/8dl87ldy/Jbf8lv47//7/x6AL37xi6SU+OVf/uVnj/nlX/5lfuRHfuTZz968ecO/+q/+q7x48YK/8lf+CtM0fc/XWJaFZVk+0Xm9ffTcsclo1jHUlSPWWA9dSN3c+VnCR1t8If0gG8Ht+ksVbIq7uI82jQzlIr8BkyFbwl42OHZHqhXv1UvR4Eddy4gUWZ6aVwLN/DmsGjI7G2+YZLrJqztDq9qu/J5c4sElzTquktIzrQop+05gCnP2luMh+/yvkZmk0EWYxMLc1WLde6DxRN1welWILsfbva4cJauxirD1zNomSssR/Py9bnXiuBTmqbPkGu1KJ/bXrszhUuEODtCS7DDvEQwc7u0ZbY1ZW2mJ9w4XXsyrz0HFOASRfXdWiApOQvDbT903qdFOVX32hjCUzVxzI6uDctaWXadT/Cr0+HsXCEhM0qiWeazJ7aO0sTxzl5AANsEU0mfWXSKtEWa85ljRGm7w3vVzhR1aQkNnUoJOotiOThygyLHxfVbJ/HjdVKHOeKKaIrhE8NDiLTqI9ubAcqh4EEijjO+wi2DLHoT2N3tbkYdUnkwe/U2AVaHr1aiaEKgf5tUj+DG6BjdVUZyrIFCgHu0qr2ZcqRB7BfhdroPdVFXGs7nm9bWczG+E/mf2TodVsJJi//Dz67cVcZXr+xptzb6/8t75GFXtbeT7jnvDLyB9+uzmf/AJA+Bv+22/jV/4hV949rP//X//3/n1v/7Xf6IX/V//1/+Vr371qwDM88y/+C/+i/z1v/7X+T2/5/cAXmn+9b/+1/l3/91/d/+b169f87t+1+9iWRb+6l/9qxwOh0/0mt/PIZn9BuzSHapVbefw0MHqUL93MEwgqT85v+T2dYnniWyQQJ/20XodbbkY1Le7hh3iDy6CvFHn4AzlmrFRIdfFoXZFmjZ/jV4C4h8tE6s+D0hzG/XCnlFLcmX7tSR3pS6Czq4k84W7Jx7mjYfl4lw4P1sALi1z0I2tK0aOzbrTQ7prC6J8iUDVPLXAcJWU0hOXlvjW+cilTDyd56imoqUkncNSov26kbSTQpy7NOWpJCb1gDPksZI2dOichupFkRRIV09zs3bupsrLaeXVfN4FqSepbo/U1ZGF8fllOgsOUqmWHBYel34W5wRaBDSXbSNoHs6xfBr2Sl1YkpsXd/MK2z9SievhLvFL3pyaYk4ySQG8OdvEFqgNkU4nsdXEaXWivZlSi2/aveLSWkXJHyZHEp8N3YRUQmihEAor3CLp9/v2szhGcmRDE3qMI2Iz7uKAtkHTYNCEhq8mkIr6lZ2imqqxcJJXRtYILq3/a3qlRVjD0dRV4MwVFLTrAscKyG4k3JNXgt/rihnu9CImDkaCK4AF7+DsHca3ilaDZ1Z8Xrn6ujW5mR/m7u9DbFebkYt6ot392fx9eNC10ee3a8V5DXD+O8vRaRpAmn5tie7An70dK7Spe5fhnxQlmD/0h/4QP/3TP80f/+N/nH/9X//X+Zt/82/yZ/7Mn+HP/Jk/sz/mZ3/2Z/na177Gf/Ff/BcA/NzP/Rw//uM/zj/zz/wzXC4X/tyf+3P8t//tf8t//V//1/vf/MzP/Ay/7/f9Pn7qp36K3/Jbfgs/93M/x9PT044Kff36Nf/Kv/KvcDqd+At/4S88A7V86UtfIqXED+MwjZskfMW6dEyFvgUIZRVSBpKRNrfEGY4Rn8am4CaaHnBr8Wqz3pkP0iPDtSbk14m+Ge3B54D2Xnet0KQukdaet6i83SPkk9Gb0iqO/Ju97SkZRPsQjadt6ToTSGMu4FXhMjVagqKNVpStK99488B6XCldebFcmPUKrwb4sNxx0MJdXlm0uXWU+Hll67QwYDT1SqPZQIaChnfhF48nHvNCls5pW9hKkLsNLpcJm/3rw1QgACsqDg5ZW6Y2N/l1fU7jbqlMuXNeHexTq5CSQwBzzEfOm0urFUu8nC+uBxqu9ZP2IJx7EKwopz4zhc9h7V7nGrCZzyJnLSQxklUaEj8LPrZsrNXRJaUnmji6FiSoImPT8/P5qB44Rjs0iycsm+VQ4umc60SS7Pv34qIG53Via34NulzbtGDU9zrp5Ncoq7c5ESMlr/glHOBH1SH26dzzn/S4bbak8MbUWXb0J3jLUbeYA2aulUtkqy37OWvxlvA+B/RuuxdQOuZj8Xf5qhPqGY8HR1PgYjE7joBxc518L7FomdqOxo5HRyUopEvo/E7iieoYFGIeoMaDRfYf316La1kZ347MPCpM28Szgd69gs0Gd/0qgDDet8Xa3CMu40mev9YoVENlbVBSuthuBzXoF6bQQqrNUuezPD5RAPyX/qV/ib/yV/4KP/uzP8sf+2N/jB//8R/n537u5/g3/81/c3/MP/yH/5D/8//8P/fvt23j3/v3/j2+9rWvcXd3xz//z//z/Df/zX/D7/gdv2N/zL/xb/wbfP3rX+eP/JE/wi/90i/xm37Tb+K/+q/+qx0Y87/8L/8Lf+Nv/A0A/ul/+p9+dk5//+//fX7sx37sE7/xX8khCMwdzBXb2VwAWAvh8+czgD57myNtoyXwg28CY/3QQJMvbpvxbC3mA4aDc/oB6ovo61wgnZW0Kuli17bLzTmNTLHN/o0P3cUXfk/YCtbcaFaqIfcdDs0RlKNV2BO1eXDszQf/kg2ZK+8/nHl1PPPFw1PoawaKEY1AwM6TW1J1ioXJbrzra9Vtky4tuRD0aOshXGricT3w0WVhXSfa0CeMx73/cOJhWXlvubiZaIdzKLc8rgfnxOXKnN32xfAKMhmoCK0lJOaH79+feDFvPEwrd3njqJW7vFKDllEt7SazFqjRJEbCmJPzGy8BUgEPPCkI6QPUkgZiUyrFMqeWWevCqc5cSt4BRyV6eLHv7ZWg0bifCodUXR8Uz7JnbZSe+PZ6xzo8DVtmLZnH00JdM331rF+6+GfYvMrLZwdt5IsHBi04x7UZadiCdZ51GD6LHH7vtEnEkRRjuDWE7EdlIvhMLkYAdiduybVwVWcBJ8AHCpP9ec3/9mBwaO56ImDVUdRDosza4N6KiwSEN59N7MhPqbKbV4vJzi/09eyVWpttRz9pv0a2vft5I7s2Avk1eeH5Qh//apyDjgrQdtFvM7zyH9qdOwov9pnx+d4E6j3ZGZ//bUUoOLdydKqISjweMLpYfep+Hp/hIfZZ0vB/FY/Xr1/z6tWrnT7xKzl++i//f/ja42v/wM/JM7nqYJR0EfQS8kYN8moOvV7DG61/OhvC+HBawM3Lg9AmoR2hzR602sG+Q/g6nUCKuHxVle8EKYgP5j3LNPoBH7xPtgvrOtnYQI00dWRuWDI0FC2s+67Tq4aqiiNJ81x5dXfmftl4ebiwJOcR7hJq3XUmVWCS5kFQe7R+R4Xj9AL/3ikRKhbCvMJaHdl4LlN4pPlcUMV1TO+mwmHeeJjLDjpZW3bEqrn9jwNbhm+fA1u24uT2reQQ9W586e4Nx+wO2cdUA3gTyjTmPLtit1w7D/YD7RdNn/2zTAGoUfBzIHRPCaup7pSLpzIFJ3DCzJhSqM1Y2Bv1a6Iv0jmkxpwqS1SBYy6JucPEuUx+Dc6Z3pRtnahbcjm7quFfJ65RuUJaXWUoDW3PCIK7IEQLGs6ojPjBWv8/6LHvw9krkS7eKTFhlzVECeNeTxxbjnUzACjxHKTxeE9yTc05f2IuhTYqRPNA6ARwTyDcCZ29PTnas+AB2JWZIhB2uSq9YHsb1y2N2Fudt/xx/5ldZ5V7ESX7nuOVlq9dklxpE3p9DkLF6VrRxWOC0zf4fhJGux7srrvas/3k5j3cjmgs31Sr42YdwThe8//4/f/vX3EL9PvZxz/ueKcF+jGH3aCaZGlQAxxS1VsdUyyuCiX714din0rgG8d4rlRjEZwMHq5ySxak9np0aPNYXCau2qHtewTjqHZ2xNyALjdfRGPGgwg2u2zUvHTyVGkthSWKcwh7Uc8gzWiTME1OYs/Z6RJGou7rwkEcW8veKlQXQ8t2bYVYkLlrFy51oljCYSV+4lvLXErmvDla1KJNY2JMc+du3jjkwv3kKjMqsDafHz7VxT33psrxxv6oNAX1duClJGrPvLkkvvLqDfdL5dccP+RlvjyjRTSUS29InZFoSyoGqeKuFCnmdDlwrKM2cyDKCHjggXPRhlvxJopl1j5xaXMQ9AWaN1gf5o173TgH77B2IaFswWfrpqhkTwjonJrzMR+3hcs2u2j5KbvTQ7S7dGyexj5z1k1c2Hq7Vn+3Js9yg/h6G/TwWRz7PtscfSx6E0yi0zGMcAkXB1vEPTNh76q41ZYrwGDiRtJJsKRwbG6LhP/OrhHJK8ed83ZtWUo4s1gCuiEBktnX5Qhy/uFhi1eNxDldA1y8P4tr/5ZizLWHeg2FXT2p9ZnfeIL4r+GVpljo18k1wIvtlbE1RTaF9Rpg9w7VW0FwpHu7OPjApT1LMGIzGJStf1JAMP93OyRuNMMXFRgsRps77aj0J2F6dAdzLTA9RcvlJjXaM7Kbr7+fw8Rb9uVBKBHsLHNFLF4U2aLFYZG1D6Negu90cwY2/m/wd7ZAnQbMWwz6AkyN/OqCToZqpYRYby9CD8dnQuHCpbOUy6ZMc+KpZEo/uBLM0MhCKF12Evgqibk1Ujiyrz1F28XFm1tLnEuOOSD7hpOCiJ+lhaZldUkysRDxMEpTd6dGuLTMpTho5zg5x88dHDyNLi1arlsOOxgH01QgWePSMokZkYbhWqXdNGTbQOi8SisixlObKaQQCJbYTIJ4TswizY1pb+42nmq+Kt2Uybl7OyoVNHkVPEvjqbgcXWtRdZqw4kbBXhH6LufkfmE9zdQt0S8ZOQnzmmAdVV3QN/RaCenmFZ5FMuVGt+KBpVmo5Jh76cW9dJvkfxbHuJ3jFqKroxjbLKEGE7zZ5Ajv9sKJ6eNvXfs06Nv72omuSjLIzYPRdrPGu48/rDnQqAtIjpq/jofExenAhksQ9jB/tpuqjZA6NHNFGbn+N9bkXr3d/nvz/scnYIOsrsBU3a8wRcQdvL6QfyOBzJXlWFxPNrf9szxd3C+yW/YUtLvWZyyRm5rTX6sPYJAaNkUFKtff70+suIdplX9yQDD/dzusc+W0jJupxQc1Ge0l2FLJj+o+YgrTo9MU0sUcJRrP9QMFP/zmTxvMH3l2vj2E1mDy780khv6ejdvsSV1a/QnEri04udmstHvwowdvKgWEGSOdHQla+5H0osC9kacOVIo6e76LCyIzfMsCcvfYEqVkHu4vrtJilRx8qyQgYbdUeuZSEzlVciikdHFNUH8wzHS26hSEIXVWi2t4uoizsDZhyYUp2qCIt06TeHtzTs7XQ4TzNrE1Qqza21o5eRuRyR0ZHPQyUVvi7zTln3p4w1eOH/EwbS5GHTt9KMthGI9tYdbGQ9pc2kwmN9s1b/vCINp7MjDdBFPw665mZIWX88qpOsL1UjMN9yHsttC68jCtzFoQzGkggeg0AsQ3OlvRk5TF69PeDQIspE1I0a7LXZwOENn6rno01oBc7x0IVk4gC1MIrO+C65/CPf/9HKOK0xGUw7JJyj7aw8pgBgh28rZvO/YAx5h3Vsxn3TLky2ImZmtyTMDErvGJxLXKFj1XRpa2g+dkiFEI2ALE+Q1B8auYtYSrexD5dzrGCO7fWWI/I5LvX9/w/prCJcPiSBzJLnZhWrGs9NG2rcp2mpgOFU1ufpvVeJkvlJq5zI1ynmBLdPXA5bZLdnPt42cp5NAqXjnf+CTuHYaLXuesn+HxLgB+3GHyHFI8+ECRlekG+TGTn1wpY34D+WLkoB98t43g+90cLLkVzPbgxrhuoeLVxRiOD2WGvYW1Pn+dvWMRX+ztFAtwZyVU8COTPgjt0Envb6T7yjJVuinrlqibz40oKQIf18U/6BUKW8uwgeq0A1mIhw21mdISIv57d4uQqNDitYqTtfPk2ekc5zF0PZdUebFc9jmeg1p8G+hxTU5lZq2Zp3VmSp37ZQWCvhCf1Zj91Xa1UioISQik5T2nfnRh8QhcWd3O6CGtvMwrR914bAtrnznVmWJpr16vn7s3impUn/dp2814z8xc6sS3L8d9ZunvVeIW7HSEx3agd1ygwNQl7LoEyV1Cli57i3qLFnUR0lnRVciPDm6R6pvl3taManMAXIbF0G3yNISgpbsqjNbnj/sstzWDmPPFjDw718xyVIGzK8O0g1Mj+sGTIjFv29nkN4MV7+aoeiDqh3ad+8FVlPq2/Yn4zGscLfYPrlqcI6C6U7onEBJV2d7qNNAuIeDgVaEM2kZQMcaeNGgcz9qPRCtT/e/lvqCTewH25kHPmqLJOD6svHd/4eXhsl+/0tK+hmpLBBiaPEfXpCZ6TdjrvI8+fG7o56LDl1DVRyw1vXUT3Xz9md4t7wLgxx6e4cAufjv+HQoI3ajvF8gp1PMdqNL1agr6vY5PHAg76Nm8winC9kKoh5j7jexqVJwSnc1lgBWu7RN560UFwp8sMtnwS/PnM/IZTDJ1FdqdkJdGTg09uKlmDfeCQZ51VjX0nrhsB8p9ZQp9ySR9V5wfABRM3LEgeHqjE7IVn+1lbegcItLmNi2tT0zZ7X3MfH734fnIcdqYs1sFtah4LQj/U6qu9DF3miUeLxNT7oHK9I3N2z8VFUWwcMBWvvl0x3nLfOH+iYe5cMhbONk7yGStiYsmtinxJDN3aeMgK5orp7YEF3BInI0Ol6vLZDpbV7J45XpMG0JDD53X68KJma0lKiHV1pU3l5nDVHctU+vu5GGWvACvQu+Cml8fNGxpwsoLE8qDkM9xf2zXgGcS90Tc68ZNMLwtQDTQwBO7AfTocn+WQXDczxp2Rg2vRjSEqcVcwSh1vGKrEQSHSW7w/Jj9Z71GyrKJz9KiOr5WY9ECkI5FcLPRGEyOHh1C2juHVwIl2aJ7MNbf+PV1WnBta6oH0t2JQezmHLz71Ol7FT72KQO3V5qVnn0tae5YIIupwuk0Uarw4rCy5MaSym7yrNlIvZOkUoI+VFOjaKK+15w4v3pQpY6W5kiURunKtQIc57YXFt9Z1f5qHu8C4McdAw0FPCvp4s40hHRS5CLkVcirkc9hClq/+ybwrApjLIyPP/bWjjhPrx2FPsvelt3bVXLzvAJ5uNK//YRv3XPjnNRi8wD64hlzuzP0rpPuqy8ccT5fD3k0Icj1A/a8akDNDVRp2yBZ4ZXbzdxLY07V8MA2eHzWZQ+ErYbIsxrz1Jimq1nuaBsieEBUb2NqtBI9i/XVt/XEZpnzNlOrcjjUoBK45NrA4HQTahtVV+h2mlBRmmWSrkCidifmt3CxkA5bn/hgPkUwgi10TW3PnPxC9Gh/duDSJ6cvpNVtocJJ4IwLEvhMMPncNUAXIom1CIfZJbA9yLtwQClOS2kDmBSmtoQ1zU5zuIS57c39sQNZ5HrPjWpD2k1lyPUPBOMG0PcZ5/PX13fz2wC9zELLePAayV3yJIwpfh4UgT3KR+VHSIGRDEnBhRXoTZwGsdOM4qKpXNfXHp/k2Zpz5KxctTNjfQwN1+fvJ2BTI3Au5uc01jkGN1WgV5I3KYgAya3PEA0pRK86mykv7i88LCt308aSegg/+FO4GEWiSkckg7hT/UzD5sr5MnM2cXSs4dejeDL8/2fv30JtW9e7bvD3vIfWeh9jzMNa+6xfoqGoL4mWVmK2iUmKwnxEcvFRIAb1QiGIeGUUsr0xXggKFfHG7Bt1E6MpFARLRLAQRYx4oajRFFLIh1GUIlYOO/uw1ppzjNF7a+19n6cunudtvc+1117JJtl7rw9m28w95xqH3ntr7W3vc/ofbJyfykgHLsfVGtOir0EwH9QjRVZzuUp26Rsi0ELxoDvMRBGGmHp0iUbCt69/zbA+uWTW5RFKVIq/6jJQh3Cn1ZDZXIw3FpoJjjYjnuExxBd+1Y3p+nnV4i4Y/aAB91YkdyfKk3YivLb90WQfKm4FJ1d4z0Q23/y7FnqHNWfK1F2WTIjKy/Nl7eKC1G0g6zxoiECZLuax2xbk9RH0zStJ72D1EHkaXEJjU/cpfNwK2+qvX0oPx/hEyi1UVnyG1nvaf1cG91AT61p4Ox1YunA3bZSke4XZDbBEy7DpHU/LmUPevNWaVjRv3G8z3Tx9b5Y5xcB2So0puXVS16F66pXgVkAwtnbjgKCBMBRI2Vg2t3MyE1oT2iLe4lov3DQ2oOGAA4XUvV0lobRtKSqQd62TQRkYPC+VSJAut2bP8JVLfnid6H8tj9GYGUR3zNeGyRhLOzk+us7xvMYvWai6lGCqSSBA4yelurbuoP/04fi7iwdcPejjt+ySnA01Fq+MPGHs1w7y8TMjWR3uCUaASlJUjLfNRat3RKXtBHljnHNQMvYvAEmREjzeNP6o6+ViQd1J7j7S/QO1fYzgz0CmE3gyB1+ZkErjw2+cEJOQAcRdVdaCtkw/eQs+Lf6wDg9HG9ctYLCvQTAf0MNbQ97PJvQF94k1wIz7xeFQ3hQZnQDFnIi7L844ksL8ErZboR2EdTZ0gXKyXUj73UthTyQVppfG1gUNOaQ+h7g1YP2qHVpxr7F+eY1ftdI0SJvFJitsCawkWivk3KC4iDUJUrUIVnYpQW+6VxxLfM2AFSfXm2DVbY567qQCFuosIv65RzVjPTLIaBmup0SuSk+Nkl2iwgbHThz23zo8MHFDYy7NW7kxQxGMIxvCRDdjXYsH1toxKzRzXp5/DsM0Obl/XBdxB4ZTyIcpmWNdKcl20r5vjCXcGoQbKxxtc0eI1HlaF9ct1UKyHjJniUUrbcvcloWaOsmCQpKVOxo5OfLz5XLg4exuGWrC1iTcKrzyzUUp5ipFlmMjHIaogj/pDZ9LyaVbIFdBbh9rcbUxwx7VVAYdIr6WBE1Gak5yzuur6/1rvaUJ/tlGgBAVyhrBPZK0nnCKwTjvLsiWdnqETBcFJITYmH2tGe4jWUrzjkXP3naUdDUqiWxBQuUl5ncjKI15ICPpGFdrVKdN6HrZO5KO6y7oQ4HbjpTmlSvs+9GeuFjHUmThA7Bn4qLm6smsJD+vbplNQbr7TGY15uyc1GJ492Ksi2RU1F8yTLSTKOdWKUk5Tq6Hu2lnnTpbz2xTp62FXjKy5h1fgIDmPi7A6wrwg3qkTXzhjcW2Ef1+/OFokO+TV3EPUB8ddVlPXGxL8J+1DFqENkE/yK4MXxZheqHjx/Zuil1vRHGYOBCm3QjtDqy6I/0ALpDG+8TzPtzp7T1e9/JcXz4jAxgA2zODSZHaKXMnXVkDqUZrsifsMYaearuf2XjIleingrfhumApYSXTA42WslGmTm+hSdkSNtQokleg9dCok8/nhqTZfhLm2fmUGzW8/R7bRNPE2i7D/HVzr8PlcfZzKUprZa/yxnmNoDpPG1PtHMrG/WlmaZWbw0YtnZyMtTuSVGCnHPj+pxRxzuEhN4ZN0ss20y1zyBtrL5x6cfWX3HmjPoA4BSSLUUTZmlM/HraJ+2XmYZl3cILggUsDKasK5/NE2zJ9yZ6EtOSej+qditQk3LnHK3jrzJDdXUBGAna99sY8rXHxfpvGgvQgo+JzNrUIgldr+Wu5tekM52eyi0H4HFB8Tlmhz8r6nIvAtOLBPDhrUsyDw5UH3pDATNm9HXNyagmh/CMJSJ1y8NfsTUCTKza1dGlpZhgAMf/J0AiN74tdHs60yE7cd7CbYUVJt41008jxLGqMIjTQ1xbl7h7wozUqxWfvOcYHIkbOLhJ/W9ddoP3UJpZu5HAlSeIqRTkSvZaMrQe1J6rrY/WkNIt/vWvCrbwiUS6KWvHznt7V372q1F9XgB/AQ5oHwUE4dQTWVcuDgFAnQQNlVh+8zVlOHpxGBeYPWwgKqyu39Cr0bJyfC+V8kVIL/rm/51X5KOb0Cmnm1kgHt2EiAh5hnJmC2zMCIXoJhmNnsqv38DeKU1q9Eqsd9AnoIdEVtAqp9D07ztk9AvXQvOe/JScam164PVyg0i6zJjFg9Guq8WBrz6Rs5KKYuFehNdmz2HYuWFP6BPPkG8BQU7GAoy8toykhuBKMmFFSo2vGQoy6Zkg3Z7c92tI+d5HBfRScCmEDhAPbJg4JL52tufpKz8JU+kWOLLhcyVsALD3RdWLtidu6MkllLhsJ49wzZnBXlpixCJ9fb1zQOm+7Ek5JjQPGh2bnOs6p8WKZWbur3nSFJMK6hr9hdQ5XE6VLQcW8CmzidIUMXWwHhxh452CINkdlJJ1d7WUUJxrzsx1gMaqs5LnPoEMkkR0Qs+tffg0P2eDwlrlp73RFC+qRh5lQ3zL06ACygfr0Z0fgMWGzYkVIFQaS0sw8sFmmi5JSR1AkuSC8qfMxPXnypM2IKrCPsjOCUeKCmN4fuoHeJPz/7OKxF7JpZoI9ZnoT7NhIVb0KS/6cdQQxTz695yv7DbCOj2c0k4tXuGYJ08LWEofaKFnDwF7o4olYEsVkaOji9J/snN5NM2tLNHWkcs2eGN5NC2vPrCmzpOJI5yega0KX8BR8ZSj09T1eB8D3OVwNA6R4FZhW37jTMF6NKittkM8EJNwoC+Qtgp9EgVQDVDJdWqkp+v412p/XG0affJGk7aqSJF6vikO5K+QuPuOBnQ6h4U6fo30xHOz3rLhfbWZclqPPEX2O2W8MO0K6a+4Jhl1VgMlBACrOMVp2HZG4cOMFeTUQEsLiY5CFZ60yK2oe9Kw7XH/041yY2yKL9V+7qRsp2a4rCkZKSuSebpjbMmsrbm8ULc22RXUJ5BoeesGfi0/lwTU3SvVAeigbXYXHddpnmzdlZS4uhdYt7WLdhnBXF4rYTsPYtFDLxqpBbA+iezeXJSip87Q2DnllU0eKJhwYtFnmoc+ceuXFeuDcKq2lPWiDB58k6vSNLdOX4ma2i7jKSxDdRd/VlRgnLHhlN4IEXOgP7+piaHHU527SGsLHNMhhC1YGGpSvbQCMLh3rQdDosngb1L9vKT77QeizeQsx2qRkw2rf9TFz9c6EhIj7aJ+IeAWIhJ1Uc720IXztyVAKlaYrrkK++pDXQ9XOhTu4P4/Rbs3x7ORIFCcnludDI09KKQFWUVckSklQNW/HCq/czFyVlD14CV45Gi40ISnk8kRcftQGj9Zi7xIkdN08yQOxGF1QoHcelxmzxJPDiSkrc+mcWkUQHnuCU0JP9XI9Rr9dIwF53QL9YB5JJRTinYLgbSdcCSMg1CmxV14W3zMJf7mx4EeL0i5GomauBkILoGl+17yu2a5qMQKtXH0vbQFKmCJDj9mcZl9UPdytdQKqIpPCySufcvaM8triTOKNHTjgKhbJOnoWWsEBNiG/JODzhXVUx86hsGs9rFjTolfVoMhOtpYuDJ1FjYGMpLh+RmSwgsXG2kLyLEnnYZ3IyZVgEs6faz27nBl+br0FAKd5kNPQaBzVT1tStLs02rtKTnggDXrC8/pIysbDNnGoG8taOBTvE6o6MhWzMK/11uXSMpuwO7MnOmv3YOdqYl7huaGAn+tDK9xvlZo7U1LOCmqZTb2RjBlT3mghwTfE9sxAVfZEwNdIUB+QHeSio3FqEpXQlwZCiURJYuaUlTBNjTWVPYnS5O25vbrSmAqYQfN1h/LrNob+Sg8DX6dh7SUrWPVkbgRvF7IAWT0h0Mk86AWyU7C9BVNq2+ekO+gFaFHpuXj2lSbueDojcMhwTWF0GGT/oI44TpeorenCBTSCGzjucSSf3T+rrkIXFzRIebxWUIsQJABm/rv+hhI/4oHvInQBsLXswD2Dqbiqkvt++7ltsb6SmM+oPW7RwkR5Xd3MWQ3eejwyl+7JMcL5VLAtkWL2yBAPj89qSUmH9roF+oE9eijKd5x0ztgY8Eqws3uPjT+WXcWh7M4Qns35PMEzLpPQtVQh25Wg8DjiOdwhdTsny4m1SdnnkT14d1bMpZVgh/S7jYJhKXkg/ciGtMT2opAfQJb4zFdblKhXvSShP1TkWSOV2AyuSOa+wfoHTEMBBtxZ4iqyGnbxT9w7x5H9xbk6Z0MvmesQ3u2eRNiakep2VGerzIdOrhtdsyvMe6wkZ6OFw3pTp1UMMItFtbnD1uOzYdk3k2g9IY6wlAwPfeJpXvnY7T3nVnlbjpzWippSD50puw3S2rNLookxhduD4YHubBNzdvHsDKxqbN3FsrsZJfm5FnEu5EPz9pNvqV7TTqU7YKG7u4P2IGjjyUWKDUwmRUje+lZvPacBy0+xYQf4Ysyfdu6fXaq6Mfsy9bWWN3bgMwdzPEcS58kJO6ikGOQH9ns/gsZVEflVPfIWwXv1IN3T5Z1393YIGTfZPfmMhNRxYTystZ6ptXtHILlAQ2uJnFOYQwdApF+flVxONlqdg+aQBjGduNZdnTIQEFoLTc5dQ3TQTSySTBFs89dV7eTQAN5HGjEP9mQmnrJQPkKioo3E20UVfFNxpZ8BK/V7mkR3gfhxXoawqlwE55M/P/OknNbMea3k7AA9D4jJMQ89s1n11ue4VgJaXFigHNrrCvCDeuxAkoz35EPxItnl3xISUClaRqm7I8TIsH1W4tVZMnbJqPHaY0YHlz0j4fGC7LPFNnuALA/xECUH1GgWdDJvsRZXobAitAORpRt605FZqbcbumb6kiiBVrVo5xA2MRBvXoV+Y3DX0YNiMefYeZFXahZpjZRQQSrAhbMEuLNAvyhUDD8wEqGEHyjbgRpteABs4wV8fmjiA/UU+qfn5soxtTa0u2KMRjuzBz/L21D4JjJmiigytB0jYy5z5zBt3MwrKfngf+iLHvPG/TZx2ioP54mcleO80S3zsHlmnJNyTJvPSoA1yqOSvKKr4qovXRMPrbrbhckOHMhi4Wx/3Ssb/D4/16VV7h9nF7rOnVpcFWfZMr07fUM3p0DI4tw/ic7EcBwY93wkPKMyGGIJKWZ3Sb2lPwS+bXKAyXYXYJIpFqpBvXcgV3nwwJPWeN1sr1Da3i3GMP7+jToEwrXBP6MlIXXDsoTjgwS9x7zlSzxLxVzeLA+tTAfA+Kws2v7qFJ0SzunblqOrEPB+MXKJYBkKRr27eo8nZuq82R4IZ5WYhY1PHhXRAMmEFBt6QTvruGI9YatgW7m4tsgA7VjMtX0kIPFvwROYPj6zXZ4tcBR5x1HFRiIlB5uV5N6Z/grOr1Vz9GgPx5JB3dm2wvk8euL+uXXJPv/BnCdcryI2UG426qSvK8AP7DGqvfEkS7SCFIIX6gVax93a4wHXg7xiFyM2INF4Jjc6KhLzGewVE93xPUdWGhn/ne3Ws1xRyCdvi0hzWSfUQgPSDUB14oKm6Yltq8ispLsVrRl7yMhDcqX/4AxieGW7Qn1b6GtBHxN215FiLvPURyDxha1TJAlNPCnocjERlmjH5oEQtctMRtnZEz7sF3fhLuZVa2grCsDiWXDfCnpQWhEnxCdQc7+8qTbfeNoImL5pWPcs2wYKT0PdR0GyYSS2xbBe6U04HlZqqNWctsLaE1Pq3E4rJXUelpn7x5kpgAMkr3AXy8GU6TuKzp3tfcMYleFtWd2XTxPNEqtl2ibUpEGOHy3SkcXDnJ2vlW47521i27Ir4nQh504qDgjq4hZPimElu4RWC43RFrJbV1FprMMA6e3vRwc7RIdjBMUz1A79ABIB0QRPtrIbROcTpEJ0P6LCuqouO1zAWF+FY1A0UjfabLSDJ4hpdGgCzWqzz9Ex25GT1OhexB7e8Dl3z07+rqX7Zq/i6jsS7Ub1i2gd2pU8XymemKk5QEbwlrnTJnxtSk+h5pIuCeKuI2pYD+k0QLYIiF0dvDPskvZ4Ftjr4Hd2TdHaj8pSLoFxdEJsAGW6K5adFld62VriOLkVmNt0+ZiiaXJR92jdT2ljCwmd42GlNefLaghkSFUEdZWYsZ6TurpMbUiGmt9HLutrcLwOgO9z7AjKqGj2im38bZBboD032xF1127TEkg5m3wekAc3UGKmUqEsHgRHi9AAEvRZWJ4Jffavzi/8vcdcw5JvSH2GdoiWVDb60ecbVg05KHJoIWIN7Vxgy6RTdi/Dtjc/Innzaq0foR8MvYnda412jgKrXGxfAtEmYcVjREDrPrgfD9i4XiHTcjHCHILDBiJp5wpdXwebFJuduuAPc0LNybkjsxXxjLv15CTcJpe2y6h4Q+/R4bS2n3SuLvJ9nBs3U+NmWlywGze17Zo4tcLDOvOwuYuwqAfdKXeKKIfSMITT5u3QgnJXF+bUKMlFrzdNPLSZxsUiSfDsd9sBPZdjqN10S2w9c15mTucKIsx1443bRzqJ01awVkMBJvQZz8mFHEKNY+9nXb9N3IK8RIALabTRfhvB0TK06kGvTwSQyQNOPgvl0XZZtfEeltjHBiSQZpTzb2zV915HAnQA04Yv4NGBMcPCTEcytw9Eff2VuSNVdyWilIwSItnbVnalomsbpJw707QxVU9wunmgaJvPmIsMsIpXSdZlRzj7rHvMOQj7JfYW6LX0YpLBuZUYH0RFONZ0dDOcBzwAaymoPeyf+/oOjFm789OVkjzxyslrvozzX9dQRvLf8X1MDbfW2pwPaep0HPZ5qV9TwyiH7qjVq5sv4lJs9bUSzAf3cA3BeHAC0fmKdJniHCh1G5Q0AmXsLKPFJApZQ7Q6Bzw7qknpuCt1900VAviS4Pxm7FDxu+cnCbm9GO4antXa7NWmG1Di7gzVUZGlbHtl1w0fRhfotx6d00mQni6wdfP5SFqiVdYSNsGud9W8ot0FfeN3dlFedYCBFZwEP7zYhozIaPf2y+Y4rq+MB1z8wbHo3UjH2z6WoKjbDJWEqXn1gz/w6mA1/51AkXqbKDLs0Q5KXjGl4tJWOSlTavRu9A7LljnEhtZG+9YcBDDR3NBXjYel0kri6XR2M92eKVHpJdy8dwrgVJGOiXHMa8wclXMrKCkk5XSYgO/cwXFDfL6jJOlMxQWwS268PE+U7KCdWhq9CSl131MLuH0NgfK0XYVkT1rU75cmH+f2yTsVKTZhz3FCfq2Hs8iGV0vjVjUHxrSDB7k02uFD59Lwdd2hFy7V2K/ryXz/Iylu9dQMWb2j0Q7QZl+brGCzz+otxxpNSl8TSSFVbziOuZ+q12iMWWgxjofVEaFcKfFIIokTySneAdAeDh0KSZyk3lO6dDeyXgJRrP1XesShbDM0RQlJOkII36Hel89h8Qzs879BZByvt68nXm1Jq9Cbg2tMK73CkhMlj9c22pU4hKrr9FKVlpTenXtqcOmYRVBO4t2qVLxVmySUdcTNqF+3QD+gh5ntFd9129zXke0qG1qFsto+20Nefch9gXk1SMxYeo1x2sHRmGmDHRKdvK2UF2H5MKx3nl3nk5HP4Wc2PmN8JgbVYczXWsKqsfXCfFiphxa8Nnc8pzsyTmq0TQZHz6KlG3CvHdi5q0pEldtgWCwNCoRhe4UhDaQkNKlvwBbtXvOHba9E3ksGznzjlcjOLyjGcUF9bmiS0eYq9yKeQVu7ArsMJ+vr3zUPLpLF5z4JUvG2aa3+kObsQICcbBf/SbVjbCytcDpnlsfK8dDQYjy0iTvZuJtW1l5YemXKjSl5VViza39OqCdCCI/NhcSbEvJnaTTBdu5niqTCOYeCVmVthdYzj4+Ju9uFeeo74CeXADgMG5rmlcOQoNp5i6PSiOVCMpfY2y7annslIv69XRN0VPTjWrZoeQY6cmzaVrgomsTsN62X52Lfj79KRyLW6RlSJERJ8Xbk7LNNKh54mmEjKw3pmGvnkh1wlA1bKrrC45a4uV24u1l2Dp3zMx2RDE4rkGzDJIFOuHpEW5JAj4rg92uXXRkX14FMIv7eEoAmsfjZeC3Jfp/SkBZTcWDLuCevXG3bv7Q/EuqvrUCWhJrvG0h3ri1e+SmehO5tWhNMk6+xbKgY2pW+U0D2FU2p6lJskdyV3Kl5KEG9rgA/kEditOb8wbWRNccilO6E1RyAmB2INbKwd72eRaXkswmhVw+aGkEgBVdpu4XlOWx3uvuH9aN/PbXkCjWrz55ks93p+nqNMxncNO6ePTDN3ip0NXdDTwkWt8XZ/cgGcixmCL73uXCybbHg+6U64OrtfP+2HfmG4g+UDQQovsnEAz7aoXb9XPKuf48NgPGwxZc1OVl9wNs1uXwUim7iLZgthYRdBOYBDpg75WZlCsDCXBolh/JFcg7hCEUZd1nYcHLz2hOffzyyLJXlMZOrsmwJpXA7G1ZW3jofUcTdIFLjWXl0BKh0DNgoNCsx47M9GAPROjOnYgxlFfUqd+2JtRfuz9XbTR0Ot6tD9eNarpvQt4Ru+Mx0zLtGRSzxTrGGLZIY37nj3+EL6bScoKh4L2wXWnAgRKyD0V4TnzmPoDjW/v7MtEvw+2oHvutDCNT2KT7DZshBSE1om5Gzt0PbrUBRNHvLz7qi22hNWLid+CuWSfn4J95yJxHpLniu2b0aNTsqm3EhvHru3ddp72NviKsw5tL782QDp8UOzR0uFXrREh3GvSbqs/mkUW0nF6EfhODxjI1OzbjyV8HJM97ouiRz4FhSehW2dgH+gDIX58iaObBnt4I28S5K6TyfTiyt8tgK5xYmutdvNRDL4lXqTV1fV4Af2COg++MGiu+OfnR2yL8mkB6oM4Diu4QGOhSuNoceai4BHLHpUrlZtI7qo4MW8grtDtqt7QFOkwbCM/nsMdqou1p/CGKnx4RthYf1lvXJxnyzUEvn7thZkrGdKlor9phJi7gG6ADNGLsWIV0uSiDj3Ac4KGo/h3V7qbQHYoO0hRtDwiuuOP/rTfKSh17/a3zB9o0XDdj35JknRriYWwzzkxP2k3nV2XJs8HJpIa2J1ic4dsrU4jVcIaYEjyUF5/ChVVfHD0pDFuNjdy+5Lwfuy8zpPHvAUVfYWLbC3WFhyp2zFnpzgMvTunBTVg5ppUjnWTkxS+dRKkWMJZQ0fFTp4IXOCIJRUCUjSSffnDmvE0vKnJaJbSscjyulKLeHla0Yay4sydy8NXky4OjdywW2qJbHOmZcpgws3o1ILcjzY89M7LPwNBa0jHXATtvZrQ8NrPpH0ID40wjz5lfv91d760sQggCQNkMPRloFnY1e/TP1NdFWsNuEHrpTSkQ9wRKgekeht8TnfvENbp6cubk7BxiqkSWxqbH1FOpDflYpGQV/blMSByOroO0KBTo2Bxv10uUa7qr6efzIpYJji0qvCFY0pNziqVLzZBGcn7uXe9fo0/h7dLgGVcScr6opYdpJ2ek05y2Tk1JzR+K6lKwU8fmQKbyzHDjWxtPDmWNzyb9hML0n2RH8BOPJdPqNv+FfwfE6AL7PsQM3xoK7/meQUEXE9fqSQ67RCwcwXZHXo7SgV9ntWRwkYKQIntL8ZzTB8gZsT6Hf6WVYP+YBmwSyNBZVBJ19nSenRPSDUY5BNs2OSNxacYHa00R+SKTzRcTbgQvsASoRs4t+/QC914WKv0T2auv6a6PquNA9Lhd0wOzHf+zq+uM1FAS3c/FWpkE1H6onl5rSHrt3VJu7BuO48GJINaQqx7uFed441M0DC97qFLHd48+wHfLdrOx0hJfLgcelcrqfMYRUuyt1IJCEx23mYTNu6kZNK3d15aas3OQV51Elzn1i0cJjqyxaOffC6DPnON+uwtLzbs3UNeyiNGEK7Vy9LTd1anW1mhfnA+e1su5KMMmVYJqEUpCvTVG/hkMdZpfOixlfMr+UvV6t27jv43kYd88yu2bljkaMLoB0t1wieK7X9xy4JJK6v/xXNRBGEeNr3b1f6TEjsyrI2WhP/HzYMrZmrHlbeP+MBZg6H/pNL7l7ekLx+3PaShgTX6N3Yy6tl5M1IBeLlqMncu43GM9XfB5Jl2r92upo8I/3KxU83x1dPlCddvVHJUBm8Y2reeD1NR90C5q5y4xEckmid9uVh7Ym0eI1DlOj5I1n85ln05m7cuaQPaNaeuGxT9y3ibfPN5xa5TrlKUl5fnjkaV1+/Tf313G8DoDvc8ho18mlazEW5livA7wnIq71aexqGAyqxFU7QppXKanL3t6wEJsdm4IK1HdCP7MJehNBYos3x9CiJBW6iIsex4zOxmA+KSnAI9vLybPaQFEmUcq8Yt2V2nWRIPT7gxKPZGyAdnkY9x1KXt2sLH7OgKTYZKS5R+smuE8t5NICwXbZDqPNGiAbu36/qzcQJDwGxaWVuoRV04Xgu7eOAnAzlHgEc75fai4WnZrzniY3lB2VqEXmm0Ro5q8ZiTGbJnd/lw7HhWVz2sSAxT+GSW/NnaVlhMLn7YZlytznyk12aRQ38XX1GBOHkms4QzR1z0ERt4pywvJAJQYcvWdy6d65XDL3NnGfK3PpTNKQClsHNQdmiboW6OAEYoQsHft+OFRSBlF8Vx2yq1anXN+Ny6HxeyN5up6D9+qVv2WjN0hZkIpD6Xsgot8VF7+ahwA52pCpGTK5AIJOrqk7/0qmH4w++9x68MWvqRt1Uh5fzCxr5nC7UKq6EpAkpGc0AozGOzqaVCNxENeuFW8h9lBFsbDgumQFEXzelXTuIM6RZIx7s4p3ncL4+JVkNboko9LHrlRpxo/umU7cuM1l1YhOgSRl6yAhwj3+LGsBM7Z+y9IK92XiybR4UinuHj/LxkeO95xbZtGKmVCzX7MpdQ7XkkFfh+N1AHy/o5lXWl0u7T94z4rQCrg9DK6In2wPfuNnXKRavAtYZa9w8uClxaZdz7BNLlTsGoC8+uajx6/povMYXzIBS4KJC/tKhXpUUtAgzFyZpluGnkmbt0n2WUNUloMDlqIi6xPehon25ytoWC4ZvlnCRGkVyq0rxfee6eeMPZYgacvl5+OUdtse2C/abvRr40uBciuy77K7ssvQZ+1pD4TjHZyT6Oog5dCQqsyzciwbUzhIePxM7mnWs1d1dq18EwGKzNrcwkgiSriwMGxtrAhhFeNQXBHDyCwB/hjaoatV9wC04BnWDQFWbdyvM2dNIULsvUftma6xgbaMboIUoxfjMK2oCBvJzXMteWam4savkRylMT8arfnRyh7XOtrnOnNJxsY6iJnidXK0t+WjEtTi6wj1Z0AenVAPkeyNNr8JTNAtnORXe1UJ6at8CH7e9ezBr1vwac27OBIXIrXrZ9uTs94nbOoc3zhRZ3VpO83Rur7IkdVIyoaJMSr+XOJBF4xa1B3Wm9G3jIYyzSvdk5Ftg7c10xXNIKr6HW57XWeP4NhfBar5614S+usK/xXzUBVIeZ8pjnNI2R/GFIn2slVygqU7mjo397hUEkvPLN1DzJw7N7XF9VduysptXlGT1yCYD+qRIlse7U6ug+ClM3GZewXkfXC7JPuDvWdyvgPSj0FKbpc2lIwuBVcI0Qnv30dbYl+cgSBTUadPDBAMoEXR206aOmlyqL+J7rN2M6Odk29syei3nu7L2YEj0oBs9OQZu1dSV6AN28MWjHal4GToClYNDsrhsHF75/19VeGdfsRmsK0Q/Z94hUEzeLUno1lDW8tP2xSfZwme8UbbMYzLPEuP9h7Jz4Ecdk5VOR5WDrXx5HDikJuT3Q1ELIKSvBL8zAjVi8S5lb0N2bZMW10E2UZbN4OiJBw2n8Q3tq3DWTJqMA1OnLkjxLlnalbu8sIb0yNLL2xWnOiu3q5uPfvrbGHU23EO2WKhXuLIw/uHg7eoVkHXEjM/u2yAEfCsD3F1ubT1onLTDFqNPl9EDNICeQlRhwGUGEG/eOu/zaDF6MeoKwzKY3QmijsvpMGPtXFv/X3TJmg15nUvVl55xL7ah+AUCToOJslCGS3RoD1pCpmyDP0o5LIxvXli0cJ2FlQ8STJcQSjtGma8oo3rBs6dKUAkqi6UbpFwGnYZYbyr+7FLnIF3WmKvsesqEPE5fNAWxNhn5a+c8NU/9/d65f3kkt1G5uloeG8H+Hhg/JJ/gGXLzEXiORGGWeHz+cRdPXNMKxaptItp+9+qbg79GgTzQT2681dM8SDzrlYQ4z8DAUrCpciOuJLD6uCJ1C/Df+luatsP4gEu45n12KQESmh0SoPtOaxPBT1cOEuWgIMHUM0ECd9lrpIKPGSfjaEYbpiKqi8+Mepto2+u0GJL9t+dNVq0aVd00SAKyZh1DpBLfG08aIBnh83bK4qw6EzXzPHuRJ06bz5/5HSunOuEPVR0EdIWL6bsxPQ9tLbRposgmHFI35Bj21IER43rHvdrVIM6smnPzB+ZXJ9QhD6duZXGlDdXbzElRQAUnGfXSE61UuOQO6HJjUh3VOhaXFZKfeNxbpYDZpYxE9LEzbxyUza6ecunJONQ3Krp3DOnXtmWO56UlWNeKcfO/XbghUycZArYuIMnmuXQfOXir1i6S7uB2xklxZbkc1ATrA5gkpAHlaFf1txA7V7pArgnZPhCWjVSFewcCNUmO7KXzSjmFaOICzJYge2JkTejFSGvhg1QTaz/UYFZDYJ9ceBXecQr/C99zL5qh+CfKSsuY7iJC0BE1yU3uSS2D4a2wv1/ec700TP1jXPor8aszEAx54EKZPNZcjR4ABc8yGIX15EkLGK0XtwPcyR7etVmGtHvqtLbW0sqlw6JsOMC7PoC2rv+5vISr8S+62NUmfG6e0UZ/5QMZglVD/jvnA4cp8YhnFKSKG+vRw6500rmprg59OC39qCAdPta3en3Pl4HwPc5Umz0Kexidu6a4YACopILDo3FavHiQ9wSKXQWsQtLwCZvQ+btQtgGuYAI4o8eEu2o6F3HbhXJPg9iS44AI+yQbpT+fHNkWRMHiRTd1V+AIO1Caxlt2WHePTlgZnj1dXb4O8lBOensrZsdzBCb3/54JnM03fMNmYJ43twxero7czxu3E4Lbz3c0HpBl+rf33zhm/hGeN1WNjG48fnepWwAztn5jWZIGjJSQYo082qwKnleyKE8UUpnKi5bVlPnpm7MuXEMs1pVl73qljj37DqH8VAOb76lV05rgGF6YjmVi+JF8kq6TEM7MjzaYkdSzUhaqcmoSZlyY+uFd7aJnGCSxofnB2p2C5lTn3jZKvfrzLJV1q14e2yNeztavAk/33MNeg37PGgXKIBdlScH7SENu6JYvwoX5ZaEy4QdI/HpUB4TeRMkeK7jflnywNVvQjHo0P0zrU4zMGQPcJa9zZlP43YGr019/jvdC/kckmW8z6b8VToS7BSnugbndPWw5ma0EqMIp01sz5VtytQ+UTYlD+ePZMylkZOvq+FVKZFZOP/NA+YWou1ucpxAzNf7SC4G8A12YM2oyoTRLYokMUYS+8yPq59/5bBXvyaXx+vV4BjfSBaZUZDYswtISHy2nIbEGtTiO2An0cy4yY0Pz4+8MT2wakFf9YTCcAPo+WvZ+36P43UAfJ/DPdEi49qBKlePqEbFYUGYjoVh2bN0myGLXGTS4gHPiytU6HB7jr7/6DqY4R5rJ2MGxDJ9A70l2oJeigqJftMpU6c8AnNHD+auzF1oKq52ks1baCaxQfcQK7bLhpo9QpvJLnaNuXda6hYBK1o1Y+MkLoUo5V7ITzpbBgtj2/PDRFLhvBQOc0PsTJbG+vKA5owu8d6RZXuLLR68BRhzxxy7yEGxxV6F9Sdg8s231HiYYmYrxbl865Y84yzGA952aipMyTNViTZPjerOekKJ64XzBA/FWHtBm1Cmhm45QCoBbOmEgr63iAx36lCD+/OEVaGWxKwZwXg+nfZW64t1Ziqdmho3ZSGLV4vvnI4kURYKnUyXoYDgCdCutBPrZc/W5cK/jJWMZvaN06JjcN3JQsaaE2SJOaC4OgzRwJLrqtG4gFlWl7Pq2TdM74IpGu8hTdCS0DtCcNs/n0WbfXniWqLl0WeHqY+U8Gt3CNFSbJC7ywhqWIC1Mqotc0m3L2R0Ndptxe42tBB8OWXZsqvzBK90PNRjTZg6ajglDwlzccWgrYWOa7cA0oS0WKzBa64u2Ts0lq9aUuadkXeLPuwn98o/7D2+d3Xs8xL2Fv/uMBP7n0iMHyFE4JU5bcyp87w8IgJbF37ldMdcHPQC4nqp5lSfjPEkn389t+3XfbwOgO93XOt6Zgn/LWOwgYdy/lXbPxKcqJgaTsBtl+/vrXXx9op1bxvpoFF4nPEN3EBzQou7ocsEUixg/vGDJugChzfPlDtHVG1bccV6Lh/Kq5LuKvVBsqZl3zgTXPQ5LfQzU6h3RJAKkMq7gT0kwXqm3ypyNG6PC0YKzUrYSDydVq+IsqEUmghJU6BOuchR4WHdFJiBomFTg88gW3JQh8bDHg+qbQm56djks8dcPBDlNDYeP3QIeFuipB6k3LT7pG1WdrPawI76OQs0zWG/JGgvjuDrDnjQLMxTZ5qbk+wHZLw7cOZm3jhUn/8kcY+1++Zzuyd14UldmKWhCGeBc3fz3Vo6S6/+WURiTuygFlk8AQK4OsFLRr9vjJfvXc/ixl66z56F3dmd4qopmM/pBghGrjZN/6eXnf1o2F1otW7ZA3MTVzfJit2pt+Dvgx+XLi06G/OrEySznTr09TgE/BoOsJf4dahnWN4U1icx554Mm3z2rpYoMsjiQs7e9txl7WCfb1VxoEgSpVtmNaGNKk7YHVlSJNIp+9/ARWuTGEVgiEUXZAd+xYm8Xwk9MotXNqR3X4j44t6NGjJml+ovyaj+9qyLWpUPHR95oz7wsfklt3mhW+Ktdsvn1zu2EJEVjDk1btLGXVleg2A+qEeCiy9fZK0aC0BC0SEFN2d3OYAQteKqpccrbcPxoJkYWnCicI7qR/w9NDvAwIoib6zUgyJTp/WMifpTEjOx+saZVJt/lpgt9O6AjhG8/ON6lHGpJEfeyORgkxT2QH3bmbA+Z9KR/eKbGuxVIGJoMnT2XbVIY2uORJTkKIKUlMe1+kPfEm1zCyWvpi0CWVAcBKwYUjscmjtZ1/AWG3w/bJdiIu6PzJ0yb3zk6UsOtZGyYhjd8q63uXa3Llp7Yk6enS697C7Yw6JoVLmqbr4rhOGsKNrN9RIDeWuYt5tTGOqi4QYRLa4uHGpD/XKydE9KpuSuEM/qCa81fVoLcG7uT9gVWljJSMxJrfk63MUEgr831plEx9jGWZhwvbcY7C4CaVSNsG+GPt91SyPUE4cUs1SL+aEBlszdICaDZyup+DqwuD9koHRPqEaL/774Wd7IPsZKm/PsskUCSIAP7fKxvh6VYOr+OQRDk7DeQjsoNqmfd4ZUO7l2N2UW15LNyT0i26ASDaSy9WhweDfBz6v78ycKFG8tCuRM/M7lrF3gwrsaRpDoM6PPipXuyaHEPZBRCY73fxfIZAfH2Jde3JGhl74nxW63pLuMmQSVKme3TCpZeePwyNN65uP1bd6cHrhNqztqmG8hz8sDm/mzmPGOwW0+c5fPr0EwH9TDBqiiczGyjSdyuGfbyPZStHaINXX1EO//eDUuupZt90XVzTlSQw83KZRTZIU/P9E/2rAPGWV2fcm+JSxlTBLLiwN6aNjdwnR0SaIkRuvGOnzymlz8wbK3tBRzO5cGitvq1MPmM8KR/a3J5yGBDJSxaYZKS+oCj64Gf+LA9GRjmpsjK7uwbplSlFqMMhnIxhmwR+AxcPcx10DwijgMOjsdcieVTs6g2Wg5+yZ+ThdrprN77H1en/L02SPPbx45Vo8Oh9JYeqGkzNodnHK/zhxK5ljdB8okRVVk4dM3/p1QhGPZqDmTEJJfDjruumDnjFZhk5EcuFPDVDole0usReV4Uzem1J3zJ4m+3vC0LtzKEgr8yhvTiYewsUmXhgDnBCsZTYH+lbCyCkSnDHoBl0otwd7efCXJj/U71uSgQuyzJwHCqHeAZnxftD2gps1befqiwpOO1B4u6Obz5ZAPk+poVd5scMrIY2Ygf3U2bDL3tpzBKszv+LofbdCv1yENciAW5YtC3oSzJiwZPRmqGVuiekuwNJir5yc197ico10YiRsOghlGykk2alJOm2tvNtxLEEbwvByDUiG4qIOpI7mRkM0bSDwhBLNtB9KMlRlndnWS7w46ozUq3h0aCKkiwbYIMQq8Ka4qNOmgibfPN06tEuiSSeklT9KJXHz2/rLf8NjFlZdS5zYvr3mAH/gjHv4xZ9k3iugUDgjy9Vq9ZOC8EgTt6u/9SLhh50w4yROABDfx7DdCuzPSb32kPGkXZ+qedkdqtkSaO9w1dykvIczbhNOp7jw5CSCPRevUW4oZycp0t7ikGj4rxGIOwQVhlnqKAB/ggAj6GvY4WoGCe92dc7RGvI3T1d0mrAnLqcIpw4OjTweQyLu5Bkd188wSLbVktCUQly2C3hLctpjBSVW4a3z8Q+/wm5+/zfVVP7VKR3ZQCbgaR8m6WxAN4WM1dmHpkcEnDDVPIpZW2Fqhr9nbTgMh2BN0I/XM1j1IrMBpqaRsTKUFyKayaeaQG7fFVWLcLklREx76xGObeGgz7ywHzlvlcalOh9iyV+dbmN0OoIt4i01sQN9HEiaXNRfB3XB/vL1FP3Ras+0o3yFWsItWS4A/xMFRQ/1FZ8XuGuXolXrvDhDqoz0vRpq9LWJbQhYPGHpQN2i+2dBzod8X5i8I9YUwvwP5ihP4Xt25r8UxgpqJr2udvRuTVMinqKInpdyu5OKGyE9vztxOK29MJ48fmni5zp504es8ocy5UcJRHvFuSUwLd5Q2vGodZIOHhwci1QSpkybbKRWqgmmirY4A302rLeb2g7azB0R/vS8psUfGlfw/nAjvbd2cIKXOobZwiRhboXE7LdxMG7d1c01jhJPOTogncZM3bvJ69SbGIa08za+l0D64R6iv73OysVCuW5tXX/uSB3a0lq5//uoHnFZh5CDkmkbDSxykkBYHVvT/ccCeNfTZitz4DKFOjS7uKKBrQt+euL9NLHNjnjZSMp7enjgvla3lHbI/dkQxwZLj39fHSp06KQ9nBR8YaSloTdgp0xffHNNAghKD+TU+q4ojvZq4f1/2oNsDeKPqFUUpDZtdr9OW7JvjMGsFWMRbfVXQKaHNybdJNNzME0xe0RKuFjRB3i68xR2Pj5WPPr/nZlp8Q0E5yMbT6UyVxuNWaSq8/XhgDj8/0siuCUHs7qR4vbSyksDNtLBKZ5XCurgvH80BR3pOPkPcEtvUyblTcsMssayFrWVKdkQq5nPAtfvGsBWny2RR5uyeOzIp9+IbyONaSSgNo0vy6+xaVX5Lm3mLbEidXa+5sdZGy7nF31FRD6WTnYc2eJQyyM8eBAeScbxoUsPuhd4LvapzTsWguuWPWaxnTU7NOBjMkJt3HNrLAsXIh43toxk9JPqcmN9ySbaycAXi+doeAjvvVzZPkKZ3hBZztqGLar3Sbzv5YJyWipjRu1f6JekO/V+ao4sNWLWwqdsAiSmHvIXzSGJr7jno1dbVDUxcqHngc3CcPyjZAq2caF2Q1OkteyLSwn1eR2EnryTm79lfvv6e2UVhas/4ha1nVDulhKqUeOL8sBS030QiKXx0uqemRgl7sJE+Z3H90CqdyusK8AN77I7lcGkPXUe4AX7ZK70vk7NeB853dSAMsOq0CKvikOvMbpa7TQmeNvhQI00RIPHhezenMlgI02pLMEMP/6Fl8+pBW7686SZ761AQ53LdrqRJKdnh3CoetBrd88VmyJocCbjPMj3LpwSNIsVDWcx5aTFP2rsqFlSRlmBNyMkpDeMBR0CnqP6y7ozolCMD7tGWCWdslEsFaYYm18p888mJu4MLTzfLKJmTTrxcD7w8zXRzovrNvAGJTQURN63dtLAFNB1kH/RjvgE19TZq6966tT64A07LoEE6ulv41gtb88+WEoiaO4qbuwY8PZwRhB7eE0k2zn3isVcetolzryzdZ5hbz7Hp+L2WqD6ljz9enXzperx0tBD3v3PT5Ku17COoy30KsMwefEJ1p9eo/LK500g1UlR/Lkie6E38mgwAzWSkstFXV65BwQ5KmR2oZF1YTxNpTeSXmXLySjZvtovIfz2OvR2fiPUNenTebjuA3il6pxxuN8rUEDGOU+PZ4cyTaaVKZ9HCqbvWqwbNoaQdWuXPMLBpcEZ7ciqF+HgiiVGzUypGlWdwWZMYh+LBRSMoLS1z2iaWTd3AN/vM2kEyvvkM/eIvf+ZXc8EsyNSp80rJFr6T3trP8mqVOufOs/mR29LcCaX6fO9D5R4T4VEd2OWHcSMLz/MjX2h3r0EwH9TDks++xtxL3m8uYdf6KF/muAqEBq6jmPZky411Lb5eYHmze+acFB5C/3JImg2lD4sXVOhr4bEL+dAptYXOZcJwdJ5skb7uFAKDQ8Mwcgj0xqn4fL0LY4ptSV1ebTwjQbY1Ga0Qh44LTvJummKQ7wHLMG8ZmkP4TQwresFSRzUyro8rung7lyHG3eOc96zW/wcgTTj3zC988RmGMU0bxCZj5s4cWdwWKomyNlemmIrj8E6bR+21+efWIWwsXgH2ntiWoD6MtnLSXRxh6I62NZEVBypFStR6tASTb2QyGS/PE0vJHMvqEmdMlKQsLdFUWLfE2uXiCjE6ERthnBwtS71cLr92F9GrEUOMaF0K+xXbOadlLEa/p2mTwE3Ffd1bnz6voygyKXlq3upqYZ80oPNEixWjb0JfinsuTk6CTn5x6Fumn7LPMdXoR/96PoWWrvnzNpbE1+K4uoTOccygk9GO0Qa98co8lU5KTn3pXThMjSmvdIXTVjhRGAoqRRoqFyd5icRDzRWIwEFUZW9NuqLMXFrMEZ0ukIpXjUlcaiwFiGbtGRVfy2MxasfF743dvs30Etz2VjfwpbtVPPPFP/vzmwemuvloJZ6FKSuZTk5QpQXa2ieeqyY+Uh45po1mifs+8aHywJP0SJeMgJN6kvGiH/hiv30NgvmgHioWQdCpDNdSeV9y7AJ7v/qx81r3mWIQ4iPWWfM4Mb2VaG8Y24xzf+iIpYE6DksbxTR7kGiAZfpZMBVHURalAM0EsxQKIHLJ/h8LqsKKMWWj5k5OQkuXc+mHmGCoE/wH8VwED24pmhvnhM1eqOW5IcloWxB9NYUzuV8rsUHYjnmk4gFZvJr0i5yc6lCGMLAx7GEG4OOiHwf6cuKswi/m53z46T1384KZA1duDwsIPCxuWJrNdkW1XaIKxSis4bwAl41DBMqkrIsP/3d7l+BkudhwcoDCqAgNr879bvtrmnEy8dYyG64gkjnWFTFXaynmgbnZxNrFq6VwxOijRdZhKOCkJnvA2JErY2ldThHJl4Rg/zGRvSVqOMBDepjjaoTwHU1IfA78flallO4tuO6UHlcj8XcXrhK8NUWCJZSrdnt7rLTugg5pE5Y3YLoHuXdh+Z1/xpd57n4Djnc/tUJcX8Gr+gCB5QV6SeiKdyqqf8C1F14sR57OC1NeqMk7J11BJIaJMsZrQw4MRNX1FDSRkgTv1N+3aWYuLYjil3luDq7plI0pbVD9Z8+pcs6F0ryN/7j5mt0E+gZEFUqTfc/ZV4hdn3n8Zxcalbdf3PH06SPz/MBtcRpPN6Eko4Z9WBGlpO7AHowv9DvaduYj9SVG5oUeeZLOHMT1bhcrvNyOPOrEqc+vK8AP6rGLUCeXlBrggJFav1fD88veyqv1NrhXOomDX4YTQopW6EE4P1f6hzr92QURIOKtwD1TNdxlYZDXI0MrN47EPNSNh/NMFyfEowYn2cEjNivp0JmenDlMjbl2zltma5nHh8lnCFsinRx4kVb2oboFiV8nInCNkw/n6LVeqVPI7s7uQToqwINdfjeCn4RLuxmuYg9YjwC/jNYfO0jhFaUYAV0KsHDqlVsWmrnu5uMyuZt6czhr68pcHYByqJtvIpu3G3sQk20EZzyh2JbsLb5+FXxjo7Qp5qfDQNS8Jb3rMQpOjp59diLJ2LSgzdVhTm3mpQprj5Znczuk3oW2uoUVZ5/rXIBzcR9TEMz3YBVvGPdkn1ULu3i6qYWVkb2KCI3f0+kCeCLEDeSmkefOPDuxVTWUhTTtlbnz/C4fb+hGSnKqjavvJNbHCTllOLnBs6xu8lzOgmz6inboeM72YP4bcFw9jpcj6Ef+R7AqrLeGzkI7Ku2poreGHJvP3gISLgjH2kjJWDWzaGbUWCJGkaAS2OAI2h4kmwqrZvoV8EowboorFk2pkcVdSGpSqjSe1xNFlFUzjzrxss00SyS7CKYj/vykHXBzoZ9IPH8DsOe3/CJy4Zk4nthOnbMVWG54sRrJjA/fPHDIjSd18VboTvSHzTLH1DjkjZI6WZTFJpY+ewcHfKQBvNOP+9z5dQX4ATx69YdBomoh2U5/2A1or37+V72F9urfafGZmYs6Xyh3SYz5C0JrmfYy0Z437BjGu4OeMHaErJeqqYUrwYsJOQptytTayIfOtmYaBXtqcHavMzYcpNFm7Daz1EadOkU6dzdn1nNlk4xp9hZYSqHkwS4+nTSkooaEGsAphYL+VYCT+HcZFSQeDIenGewPqaUIgiPREHU5ttmcXB0tUVG5FN0CQ6D64VduaHeF013lyY2blt7NC+fUyamzrJWuicelsrbMumWm2mLmoqzNYb+u5xkRJBn10NwEt6XLrCtHzBnyXz25WIF4Oe/ouwhU5i1SU2gilKpogrf1wDGAE66X6FlW765RJrWRRNko2Jb9WrS0b1lgjlIM2b0xp2W0TkcgHBvgEFc2D2JkuzgeFGckuhZrgKUGGOLsn31pkEJuL2cHZTWSJ2iD13k9/402eO/BJwNyadiNYiWhj+6JuOLrqMd6you7SaR3Ia1/o453PY77M+U0W0Mb1Hvo3Vz0QBK6qiMtj4ZNXg2Zwtt2YC6edB5KJ2df5GN9yv5/3oTeVCjiVVQN5PbWUwhoO4pULCE5kbLtqkGdxIs2M6XOLJvTCaRxkI2X7cicNl6uB2oqnPLEshVy6mxboaWEtQtK1CICXmMXbKQG5tXiel9pS2adMtOhMZeNL54PnFrhVAt3dWUuG9U/IYVON3hrPXLuhZu88iSfIglw8evVCmf10HObXvsBfmCPPrsbuqTYXERinuJAj91jbWw479cGvUo3x+Y07GdGaygF0MbUh+7taGxvKJaToy2nmOAEuX1vCSqhTenvL0cn7T65XTDg4TztWny2BpCkCUyGTka97aS5caiNrm7w2U4VPTt8PbXI0MfsiyAu50slSLo6/cwekPb5neGbyPjvbC4anxWKXl2fsVv7f0uxqByTa6COFurUkaPP+TyYZ9j8oZUJWhJuq6IivFwPjBbe1iq9J1orvklljYozsbTihHgNQeyeLp8n2qC5qLeSr7Of+NySocxOmvOWoAcM11z1BGA+NGpItvWeWLbCVJQ1GVPxzeC0VTcu7kLvGe1C27Kf45L2GaQnZXE5ozKW9yC/j1PYP25seqah5pHc/82TMUB8nus/6zfVstMa8rxxODSSGMtWaD1m0xEIRgWZ8iW8yPBnNMFacZ5g3Mvdy7ILZRHSGabHMOddbe+K/0bXB68st/HoBBWp3YAOuzLxbm+/cXPq/rw5CEhiZp6MXJS5dubaEPGKLgMlDWFsJzp4gqMUaaEU4/M+/yzOk80BasnSmVPjmBpVGjV1irjcWI7A1UhslmiWQ1xh8eBSOqJumpyzkjXR1QJtzbu6UfKua3JZA5RIRAXUUiDKC0+PZ8q8MhWXDmxaIA1neF9gx/ichvBSby+JUKyJjHKIn3ndAv2gHpPQj5DOzgO6EIND6DrWyr7Bx/Flb+eIWeNXIrMVCxHpsMyRLNT74OKtmX5r9NuogrAdMLJnlQkPIkOpJTaU+1ONnwu3g9UVJ5DkbhXxcn3JmCnb5u1UWYTSjd7xuVjMHS3hJNs4ZzH2eY/hDwzpguActk3XJz/AF/7ZR0+ZywxwBHU8YJjiAU7Ug+HkFzpXV2YZn8UpHfE+a6Jr5q1+w7M3HphrI2fjtBavQEzIyedQqsLaMi3JLp2m0RDKMX8pQWw2E7oKOXtF3bfs7Vn1KzAfF2+jaXLe3bho4kLmJSvJjPM5B4ze+V9LL7QGy5adRJ0MZ3qWHYySRNEByuo+y7WogiV864YR8OWax/GunOyyB4rPTiXWlNoVtWcsbmW01lNStAnnU0WSkrJfIxuu0Nk386m2ABF5q8IQenQnrBOtDo9qJoTcmnc4UoI2Cz0JFZAl3Fi4/PmNOAx/pj2bY7eF6pPftzZFt4fQUdVY7I+RcM6jvB5ryNG8NeboXQOYIobkuH9BKfHcpe/BL4mR8RZnoXtbPm1eUaXORCOLueExgBmbZjopDJw9Czcj9DgTT6shNpOsOM9UwSZohF9kUIj2BooYXBlE95Z9PcScXgPIJUU5lcz64o4X04HbunBT3RW+42pLh7S6iLw6mf42b7hN1KAaqYsMoLFOXrdAP5BHq0afXOQ3r8RG65w9PQrpbJTF5y/D8+Sq0AOuHljjlad37DE7IEbGQzZSM6iP4iTnMDXVo6EHvZRaKYbj49eKB2dT2M6VKcFUN58lKTAZtuCUhVUC1arewtTsM6xktCoXiH93sMrwkBvtkrH5JnXvQEFCziz6szkuRsidoVcBfgziR2UUDxawcxVHlUIy0tTR0boJI9iGUGalJKVtCd2IjXjwKDO2JN55+4YnTxZub87czhu1GQ8GyzmzLYVavQJNkU0Mz1Ewp5XgVdhUOrU6irSbu1qvBdaFvSV6vj9yuFs43Kw+51phA2xL6Fpok5KLcZw3DGHZoG9eEbWU6F3RulGKvRqzJAjJ1a+7c/pGhRJzm9GmjIxgEOFfOa4KR1+TsQF3cbcJMRdYTmNBxqKNYK6ayJORSo9fdwK2d1T9PpvA1gvz1Mhl3UXYS+m05qRwp3PgizaDHoxsbsPl9mAOmNeD0HK4SITYt11O5dd8vPs6jN/Ni1s49VmumjdRwap/r1Xb16ScMjKBXiVEqpmUevD3EmpK00QWo5sr9nT1ZK6K0WMO6Ly67gjPcQ/FAVs1qA6H3JjFuYQOJfP1nlFaSiymWJvo4nJyU1IanZvc6JY5lJCw6sKT48p5NR7N9UdV1C/2yDnxLotMhlSlThuqyav10XEw6Fvm/DBzPG40NV6uB5agezydXNzhrHNUqkqncFLhJq9MUSEOgQnBOFl5XQF+UA+t0A9uCtoqMfQGVKiPTjpOm0UrgVe4bxCVHVeV2rsioyPB4sHrYBKOy11gG/rQbhpqRRyhtyVM1YNfdOiGkooHVNtff918viUYeq7ebjrLzmnUW/WqTaAvBV0jX+/iiiOrI+CG3mTUl9EGJqDxMMpBmaNtMo0NkqBAxDXp+NyxRsVRXey6zg3tTto1sZ0+4e3Dy/C+PNmopTFPzdVwNLGtrnaz61Aizi+M61CLz9ketwkMTmulL5m+FKbbdddA3brzA1NUryL+u2bGh24eOZaGinDeCg/rxKI52pzRwlsFZnUgzcnThO1UdnBImtSrz2w8LhVVoW9XtkoY2yq0mh0hGcambsHkVb0OENDq13NUf9K9ijJwabS4R1el3ivl096wEEfwXlrWIGtwxsIiSapCMq9gpx6i6v4qLoYcYJjtov5ze1iYaqdGhd1UOG0VcJm0cV9lg7Qln/Ot7glo4NJo1UircXiM4H5Z1l8a2H+Nx87KSUFziOAHhuZEv3UHCFdhYudHEuLTdjBv24tXt0mUGolRyc6Pm7K3Kkv2FuboKowWaBIlBzAmGeGs7lXgbV54Ety58bVjWp0pKj4nNBM2MlmgWKekzlkrb7dj2A4JNTU+NDW+GFeqaWLpwnnL/nwnCzJoLI5oecrk7Vddczzz6fIzeCUrxdfw2jO2QU59F7tA3O3hrpy5zZ2bvHFIG7d5feW+jXB3thKJxOsK8AN59Gpo8VZksqhcABJst5DCzLOccdPPaxuXy7p57+Pq63tr1Qxr7ALbqV2siNotpJPQ7pyQSzEIFN8ropHx4s7hS1FZCTI1SMnbqEv24PsoUMX5eDW2zbFLRIu0FyUtyV3pA/0ocJn3nM1fA3wGF5JMhH+YhQvFToJN5vO8YWxria0X8qSk7Aosgobw9Xg3F9WWDbpmzupQ+po76eBUi56TWxQ1jWrEFWbWFwdaBLtcO3NpNDF67fHzzs0rESjRy8Y+rI1eLDOnrXI7rZSkPJnP7t+XlVOutKXQk/mMrjkhXKqSp+4q/i0y6S6cmoNfUrJQTQntzGgZ2uoCzE4T8M+SUrTIpWNboA/HPDQqFhVPXAzbu8rXa+zVivIqNpq3JSUJrCARs53cH6CWMINuBqkYuXTSbs7qSMM6mScxJjwuE1tT5mnbrYGO1UnbS1LaUmhLgZTQFC357JqgZcEtyMwT0McPQX0Qytko5/d5nn6VYyzr4Xso6kFXutEO0Wl4BA7xDJx9vq1TgLsMWCIZ7Akmb981K56A1f2dYlQBglGjaksp9H4ZBHghiycDJbmR8os2s2nm3Atv1Adu88ZqmeKqvTEvMyZrKImUNNqnSq7Ky37gvs003NPyaT0zp86cNqbsykcP55nzWkEiGRkVnoobKQcKm+x0Hq6eQ+sB6Cp9d6coJSp6c9H4rYcGcC+cp8JdWVlD/m8KUVk1n10awiyvlWA+sIcejD65R5kqcGTfOdLZq5XULzqMr6hrwAUccx3svtybRXvHARm2A25GdZk6JE3khXgAQbvCzEW+an+vKC8TMHhbYaKblrRvlHarcAjjWfVWHT1hPeDyXZCgPgyitMGFtiF4W3O8VwXm7llizPm0u1SYjKA3kogI4GRjPjZS8WpBMHqTsCpil4uzBG88e+D2uFCSZ6CntfK4TkHcT5eqJwOiu4WQms8EBaO1RN8S22NhPjYOt8tOuwDPsM2u7V6Eu9p48/CwUyoe1iPnrXJeCy1amKw5grqBFkx1YJIu96T7dWoj+GtsKHuLabQFLCyrjBwVunZcRadFq0rj/gwFmD3oyWWRyWXjf8+FN74/itDsFaFlC0We+DPQvCkCrOB+drFx9wHWCQDOVJTD7PfJwFVK1sqyVJ8FjuRMxVVgFpf9y6t/yBYIS00wvQBteOcimQNnvtwz9GUOwYPeehTarc/190dl76J4t6fP0J41X5tXCeXO91yBWV0LtHZKUaa6OQgmN451C6BLZ44qcLgolNRi7ufZsS8N2T/LJF4hzrmTBSbZeJ4fOaYVIxCUWtgk7xOFZEYj86If+dxyx6oe3ObUaJZ57JX7NruikBZSNubZBe/7UOIYGVGsUet8mfUy1kN0WCx7sifKFEnqoXSm3HkyLdxENSwi7swyUH+AoEyy7dZhX6/jdQB8v2OCfox5inmwG/0jLYAJa4L8CDkbefONSBK7asxQ8Rjr6d1tgOuvARd+avdMLIVqiqYA4xy9stLii1EiSg5FkldevEcAsdgg1dDsIBDEH2hbJIxnvSVJVliTV709he2Kv8aQhtsPCVRqoAcFvZChI3Kb2v6ze3DaI7vPNfomgUa0HVyhMX/cb0Xe2FrmfK7U6kocU96wCUQKKSvb6m4JWLpAvVd/nVUn1odKrg4yKXPDknF+LJSqu4O8DN4aLl1WkoIpXzgf3epGhUk2NhI1jN+2hNMINCBzW+yo1dtNbjIcm17P3lKM63Fto7X3+a6SqN4krpMgKe57Ajs7h1TwIGhZLjqfFhurjHvxpQvvlSljJFDDZsoTHnulahqAJxFoLWHmuqRDUSShuy4lZpzOdZ81ihioUdKGlEyzHKCb4pVfxnfz2eghym4GsoVQPN6xGzqhOZ6tdy/H9ztSdyNqnc3NpWd/7aGUoiWuf1byGbjRMMSNr4cUGbOvk6QGDerkle0sGwfZyCh3+UwWb4fWUD0Z+U2CmPnZzodThMylmjv3QqaSmTjIyo2sHGQFgTVlHmym24Ra5qzOwyk0npZHHvqRx154aHW/t1NqpNKp0thy5rxV+nEF6bS1esvzOhsY2fjVetm/tnlLnhTPa06oFVQTyTotJ2rxEcVKptCGWqC3f4MukaP1ex4Aqq/T8ToAvs9htbkUknXycpEBG+1NCwqEzU4+7WL+cJovjqSyWyoN1PyXScRfaZ1aVB6oJ1umkDdvs5STsM2gs8E0kI/xuwORuX9G2ekJgFcOPeZGvsV76yYHAZ1LxeUcQfOZUI92Z3w2GzOj2GSt4y3TLEh1ikiKTV4EdC0uabZXKxEgGlA7UkGyUbJvfFsM7jUCtSks20TJPl86TC5flhKo9N3BwSZ1KyfVcLFOHrTXjK1Adbm4ccVS7tSb1SvgV26M35EpezR/aDNP5zNT7giJtbvDxEDh2VA2GHfYCH82hckur7+3feVy068qf7/9dhW12APlJWeI0vqAVyNGnKu3LAeyM8VyuCa5XyJhaKgSr528upJ0+RpJ3N5orK/xOqNisRTzK9/Iu4VweYKejbk6UGRt2SkdLTRrY42SgGNHrCDnUAbqRukOfulT0Gw2Xy/WhO3Or0c6XVW8X8FRN5D7mDHe+MfQIxd0c5J9HZEFmQPs0kdlrt4hGfcs+3xtEiVnY546t2VjSspNWTmkzcWg8RlgI9OugowHQHHqDV5JkRzM4lq8lZPNLCw8TWeOrHQSszUqnRcGB8tsTOQEa6uctdI9OnkzAr83i2YQ/6xlXinJeLAJ04J2i1n0vgtdjvGlvTvhn91pNBKRLbvsGQdyhkPZeDK/5K6cKbFcayjFjBdN8eez25PXIJgP6lEmxQ6KkrCspHVIREWrQByYYkmwCRJe8aTN/61mLh12lW1fL7Hrf39JEFQPKCqw3sL6hnL6hs58s1IPnSLerttiY7E+gB/x+WJtMiSqFlwGLRxJLPnMxTc73T/IaMEajhJVNQdWZP+dXYGFy3/LsSE3Lao30JgV9I6jC7uEDqjtGzbZ4OjZoarRWqb3QRweWag5BcKEWjt3dydydkWNc89s6qazQmgRCuTqElq9ZdqKz21aoOxWv49kP+dys5J3bdWotJK6N19UUWY+vbxfo43UMg+rK8r0nlzkeRjTBmEafJ/Q5BmDiJ/HQOheE49HVezIzqjqk2HF50ZDnWO/LtGupo9FNAIunoyNdrx4a56hHHS10ExsRw17yxOfA5eRpVmUKuyb8t5hCLK7ktiGhB0eLOvcmacWfMvE+VzBwrduLHgGuAnkZYKzkB4iWcRoz41+YzB7H05fFNrs75MfQOUqSF9dwvfYur/kUGC9gz7BdgwVo3J1GcXP2eXCBB2ipCVQygpOx3E+aK6Nj93d8/Rw5o3pkSk15uS2Pze5cUyrS5epson7Qm6W6YRajLjf5BRzwqOsnrNGdF9NuO8zye7I1qmpIsALveGklbf7kbNOISlWKGJMaWWO9XLWClLY1D0t59DW7eYAspI7OmSVXulDvevYvyVXiRSjrMNMyHXjyXzmW978JabklI1zz8zWeaOeXBHIf3y/V5/fbvnl89PXIJgP6pFqR2qAKs7Z6VXJ3BcvCanZLmvWB5eoxRylsdv85CZIs8jgLwvg3bd8f5BjgaWAfs/vuFZiOReWj8H2Ric/2cjVSLmhoSbvXmwEElR22TJGq3+NVurqQTI9gG3FZ0vH5qhMwc9ZFE3uP6fn5NqI++bum6YQMe3sFAU5OEk45dF3jTPq5rDrISMWKEAeCjb7Q+nvyQ5AAZdvS6nTmpPSP/f5p9zertzenDmUjUPubEAScdJvyjs6NBcl3SitmLd4zn5tZKBKM6z3Ezp38tQok1MhBtcviQYbQHbqwdYzKRt3c+Oc3MR0A+fnpSjXu7eQUZBzwmqorESw2eeEexZBoEtiBQR5WJpgRcKJ2y68QhWMFG1n/2Nb9p3lCqjEoBkwCkrb328UcqOlOa6LQgTBkawECCYW5L5eIzkYHQDEsJ5Yzz5fnWbnXd7crGxbYduyU0qGAk3Qd+zO0ElpJZHPRlqF+lLIi7LdZeyo2NONviZsSuiUmF5Cf+lk+bR47vY+W/eXPF+HL0CJ99qeucC1zlddEsOvc0uO0B5Vrkr4UwJqzpMz+Nz9HedWWI+Z5/MJKxE8JdGBG9mYkjFLZxJls85mxd1KyC4aLwkl8cjERKNyIcgvZN7WG85b5Xl55CgLB1aX1cO4x+2IMsqjdqpMnK2waeYoGzV3auo8tsq5ZyfUJ3dwn7OLX7x4OLAsDua6COy/X0CSiwj8aIufC2/3W/7f22/hNz19h4/cvOSuLmwm/OL6jLu8cswbYsaihXcCtfrWcvw13r2vzvE6AL7PkbORj80lxKTD4s7naQlVlLHJjzZ2jiQxZihJvSUqzfYi61fLVGM/8sUV5qPbE2G7M06fMHhmlKduJ5PEyNkYZFyiYlmW6o7VptiW0SWRzhnZhLz451PM5y4arZieLxVA0CRSwukQYaeiB7ua4cVRDKqSb1ZSzFGsu2C0hjmqUxSiehnVDg67luLtI4lM0oNNQO1N/KGMD3XzdGE+bCBw7tPu4acGrbsC/1Q7Xd0G5nSe3ES2Dx7jVUBISjl0yqFRS9/h6MO9W+RSRRvs11cbborbEm0bbT1xkFETWGWv8MQSstlF0Nlv1SvtR+dAcpmvZpDSKXMIRsdnUHXDWTXChSI5mjf89VLn0lodbQS5BHB377DQ/+RS/SULE2Klzq6s09ZLm07CelCVmGWOc7nuXThiNRV1cQHLbEugX7uwDxEHrzAyfulCekjks7+uzqA3Sn++kWafBfdzifsmDiCaoTw6anSP5lcF4a9aRyRPLPWA83lnYahZjMu2B4BRrWeFJ500dVJRXLTaKEV54+aR3/z0bd6cTtzmdVdtmdPKk7xwFLdHMoSTTohVwsqdhOvAFnGNz7L3dUNPF+MgjYnGMfu9edADL/XIvc48tAObeftx1cJqrimagLu80KLSXHqlJONYFue7mjlaVBMvzwfWrbpIxmhNM57RcXz5KzuSq1KVfGg8vT1hGd5uRx70QJHOk3qmWeHtdvmdpWd+8fGpW0V9HY/XAfB9DhGjlA5HXMNR3B3cRMhnIW3gUyF/tkeXyLEyQhco2cgJh5j3q9f+Mu+5t9wDtIK6HmKfYfocNIS+TcjTjXTwFuLOXwsoci4OlyeCoARC03qiV58BJsXbZgjyaN5GXQtUJ0NL9veXQ8PEYc5i3k71gB9PSFRz/aGisyKl+zxR8DcJr8J9A4z2rJ+sxayPmJONyihcCzqk0pxInTtty5wVcklMk8swGS5bllOjZqVpRpJTGqbDymaVrjm0LsVvTvLkRDrY4ui6FEEwxd3pCoK9om7n7SNBxD2+U1JvB46yfVzn5ufpG2pUfCOmCDvYZL/Zod9pA+Uo4uR5DURmVFquYpMC3GROowhBUhVx4NTQHS1xOYfArIzOwNVnSDH7NTdn1S35tSk6OtBgKebX19xCuSRB8ZoajvCSZJf5GrHYRuQf9z42YVNDb7vLjjUhd5+DlQdvyVk18tzQ1NGa0cdMTsJiiV6gVOcOpo1fu3+ggjS4+SXjfIb0AO1OfBxQieDM3u0bLX62C9so1b5XYKbC517ewo23Vm+qdw9WLdz7I8hN2ijSmGUF1EFbMpw9hGzewq/0vQDLCJVGlc7MRg4wiyJIgkpjro0X7cCiDgKbzNGWi2ZaJBoZ5Uk5e5Dsvt13E6bUmCTz5vGedziypMq6ltC49c6DwS5j51Xf1X3nco1EoK+ZhPprtbxroibx6jOjzKW5QkyvnLontvV6U/w6HK8D4PscZl4FmqnTDoIczGPGtiBBx0bxylBeYgNCdtWnZLhj96/Sr9kzWRntndj8GticnKs2Kz2LPyRJqVn3z5uSBeiAixyVpl3RJV2BYAQ8UKbksmLZqzDaJdO35u241PDNfb6qAq8rmywxrZJokcX5QwSBqCiG4W1A5lPppCsgmHv3XdprGm3dTYVSNo5Hd7t3UrCHK7doySwtcaiuU1lS4sREK86jHHqiQ7HGCljulGOj1lH9XWe+sscnAFOvvjzgpYhr4Q8YmwYqewASu6oERa5maFfnej3ESlF9GmGhZJQdReoz0mHBZCm6Di3t+qrDHso5XOwelvuMi7hH2dzUNvvPUUBmIx0auQT6NbhcjPanjHaoc/32kxiBcFRQIUXXFeglAvUIeslJ9WKRFAnMIPfJgVYYWsFKQm4b6catlkSgZ6GvrjrTw/surV51u2uFJx2/2l66X3oFyVAfwCbBVqf90EDzSNDsAiB6OZHeWEnH7hxOGYhhWC3zxty4m1Zu6sYhfNMusnr+IsMRwqy7dmas7ywuIF2TcpCNg6w0Cov5z0zSeZLP3KWVimuInrS6k4IKml2E/KwptOU7szQ2is8ZFZr5/HFok0rG53N147FN3oK9dv+O5zElCxcP73NqF2y4zI+flSGM4LZMpbuQIJJYFZJkVvV7dL/fn4sEXM36GgTzwT38xpTieZkItEeHgO+E2s12P7jdKqnFv6MtpQKqelGXIjYkA3nX2w0glhm0aQzsnXjfZoO5IcX9txxOrb7hgIsTb4n1NMEq2FYc9DLcwxuXwDa4hgUX91ZIqxOxgzwXG0pUZIMbtreI/PcGhF4CEKEtIdnJ0YOEb8lbsfv5dUGyMR0c2p3EwvE67e2l3hz5h0KajcO08pFnL8JBXRANMSUDxSWo5uKSNaNSU3VBAN07Sx54XYGm76a5vRm5XIKfb1S2gzHVxCWuutshtZBl0zHLVNtBPiPwD6V9GMHQ9sRgv+npUmXs/TcDzOgYugYIY4hNExVyZ+d1ulKOBXcxqrXwrrQa90rM1YTGPUzmuqrFrZmOR/dKVBOfScVal73dFzM7E7+GGhF7pAih9mMx56YFNYMI6qP1OgSwDX+Ns3cUrJrPUKshx44cOiW1C4pYBCndK7TmQaUd/eJW82tdR8C/enLf3biLgta/37wjf/icUY6uPNMmPAmsrkcqxcXi5W7Djs2pHlzoMlk6v/nuLZ7OZ27zQgi9UYMOkaOM3hTMChljJSOiro0ZSUuig3rXYiGTRXmW7pnoPMuPVDF3fpDOQVxH80V64Ff0ni+kJ7zUI19ot5y18tBnHvscqjDeHVm0kMWdUBJOXD+3wrmVcDsxSOqSi9k1RWttbl+FP5vdvLr3JMbXqCRC49WtnFJy93gRI+NehiLD+NfvykVFSCjSX2uBfpAPn3tEhSe4KPJTRadCL4adsjs1LA7Jt+CzIbhYsVzaRk0EllB62eLBHE/pOOzyt4gT8JNaVG6epS6tYj2xdcFuGgZM0b471M6WDEkbay6QOmY5qjJBQovzMsexANr4BiBwBdOSnQOYYqPXE+4Kvlcysu8w18alfgq+8cmwNkr9ykvPA9tymii1IyFWjXRHVopvtH3QIVbh3Cc+q895dnfiOK9YUrcrsoSYkkVo3eW4alamoiRx1/KlKOupYmt2cNLmgfZkQj00pnlDrxRgbFRTcSY5xcxKdP/4TTJZoY/FIeYVmREBxCsm0b15GK8pe/YzEKHWLIjX8TqWsLMH6lQ0Nu2r1xenm+zcyoEwHUF7cgSvbAR61ykGe0U+xf3qmS7K43lmnhuldFLqdPVruRu0EvdRYg4JjniVq/tuEnPceM/4XCPqSLiMu8tt/M7sz4lsIGNmjc871wPU2YnmtRg5d1fwydmD1X1F732OVx6dx1dPuMN8f/WxevWhJlDA0QXpRn0ErT4b7NWJ4Kn5a3cV1Cq6JbangkmnlEZKDnT5H/dv8EY70Q4veWM+IeIBAFNMjCkqORM3XC6E7qxtbOLSZT206BYTJklgnTMzKg1T4S4tiMRU0GBOnae5cZsfeZYan9czN7Lwjt7yIrniyqPOPLaKRbu0W2HryT36kvLG/MghT9Rk5KTkPHFeqwsaqAsbmBm5eGeg0N35Q0P/NXl3oFQvDnrzwHp/f2SbXQy9TyuH7HJto6MChCycV7Mv1unL3amvyfE6AL7PMVQawDO+1jJ6LuhjIZ2S0yLWoZoSkdLkWkM4dBpDNDserEigftVDZ2gHYbsR+tGBMHZn9NtOOfToq/rczzqOgGyJtvhmz2NyK6MtPuPYjEMD0ltOdvHxuz46rjYSMyQTsBu7guz7FSJHxYTtXLGR5Y32iBloC1NbuZx/nb2lVIInNx4upxfkkEyDNCm5dj7y/CW1dk5bDeFhogqUXRkji4WtUaK1xHaurPc12roevSz7Znw4NuphYyi+7OAbv+PgNakryfTEuhU0rvFQcHHevOwAm+sST/SKb0cEv6tj0Ga8fWzs3olD2cccVflqu1miyyAuDH7Vjtq5o0HL8OoeB7tMQFHk0JFiLggQLazDtFGyE/9VHUUrV/fR4r5o8w1wgFKsj4URlWlU7AMExqgezRBNrgxOVIDBLdVofVIVDs3v9RTqKSm6L+ZOGWbx/i2jBewGdzg4wk0TbAmC+ruOvRIUOH1IaDdeyKZNXIc09FTL6u95voN256ITJEjHxvTm2b0yc98rwAS8eTjxkeNL3pweuS0OgpmSi1hn8SpwEje1dS6gJ20qObrQ3T0BuYBgOsIkjbt05jYtVHFg0UJio/PcnMby+X7gHT3wdr/hhR456USzQifz0Cbu+4FzLxhCFmNOzv/LdO7bgUUrqyY2zSyt+vVOPRI+CwCY7MhoxLWKc/B1e0+eEDWhTg4S6j3RNHN/nhGBKZ3JyahJrzosvjwetuoavV/H43UAfL8jHrihfgFGyh2OiqXi2WiKIJhiGN+8wEoSG8EUQQojr77RpSHn9D5B0Ig2zSk2TxvZtpC2jL0BdrM5YLNceuqWlFI3uhl2k9A1e2a+RpvScOsk8Ie7dEzEN0oNnlpIVpgno5e55Rko3r7Eop2kAc8P/uDuGI9cMC3mDgJOOHYkLQnaktHu2feYP+WsXkxlwwJwZAa0xOfeesI8bxwPm9vw2HBc9y2uG6HEj1uuCGhtzE+Udi70IVcWai3LQ6WtiXLYyCWI9eozCcFA1NtI5kCjqTa2IMhpT6iMii+F/Fo0QIOCYCkUTd7zPsvl/reoFHtUgsmv2StzQ+ES/My7CxKVlgT1wSyqvFHhjHuX2QFPrE7qUxPns2VjbYXWw64pKSWCvg5lmAHizEoSCcBNCoDEhRBtV6clkSCNCvFSBUewz8FTDN6idYNltMiENLs1kHXjpjYOZWWdCudaWKvSz8UF4pdEIvH4UeiT0Caf7eUYQ1w1VRwY9eCI7O1G2G6MNgnTI47U7n6dprf9U4pCv/O5GS8y5a7B5JW5n6uy9sQXHm8wMzZN3JYlng1jTu4cvZJCLGk8p0oJrq0ByXQ0V/2/xWiWeacfWawyycZE8wCEcrKJYp05KQcaz+WBXDo3ujhvkO4KNVvnUSYe+gQmbJpJGJskDnnzHKU4AO5QN5f32zx5xPxzEIHQkcApJPoGL9X3Qw9oib5k99iMkcbL08yyZe4OC4eyMWVvH3cVNnV5wofz6wD4gT20uyajGOSsnh0jPptZs8/VEN/Y0wginsib4RsU4ug88Xw3KRfH7vc49q5o/IBOiV6hD5Qa0HMCcWudadJwMje2nnk81ws4I6ouE0eOsV0Cm962cFhXyuS6jqqJviTsnJE1++cuvqOZGlLcR3CUSTI26PAnBHyWEJXFUDcBrx6spX3u4YhA3YEdEsHDVMJl2+dttARJ6RkOc2eeG53E2lx78r2uZIvWtUaAbC27R98AkeD3a3AeSV5BandAQck9XCHc9iin7rqfPYScbMwq4+2LgiRsi9cf1X+ARN5d+X3pPRdM9NJC3HtFermG4skIMXOj4xSIkbBcLyCJqibmKxatb8uKTEaaWwhtO1Ajh3HqyMzHbFW4VIESvM9Nw/k9RQY0lkOSfeb9ygK+wsz4fbe9mnXwWMxLMw40q8Z06ExTo+bOVJQ5b9xVV3B4uU28/XjDvcy0VCG56XFqQq8w7ckLl/sQlzRpaDLMwnYXUmgGNsP8luyXz2oUtLO6BdkEt09cN/bp5Nqxp62waqFZ5mY68awuPJ8efe6FUQQyRpXQw8QoeOKxWnZxDfxnBLjNXulhxkqlmzAn3U1lTzhtoZPjtbpLo5pw3w+ssZXXZLwhj4Awa+Ohz/iU0QE17tfnwbRl5aF5BfiwTkiCu8NKt8TWd7mnfQykyX0Ou3hHBHXhd29/K6X6er1Qspx033qhZ2XVtL/euRUe14nWXtshfWAPY1j04ATzUYUVZWgD9pRIIrSEyzhF5Tc6WaKBgh8P/l4VffkgOLpq7SD0amy3XiVp8Q2CFJkXIOruAX0THh5nR2qtwDm5/dGKZ/8GfVaYjXzcvI2BUKaNqXYvLhT6cnBy9VB9MfOqKaq9fYYCvnskvfA/RpWS1GcWCUc0Gljj0iqLDd40YWpsIrQt2i4BXLGwABJR8tFVZnoX7s8TtTg5/Lrbdf0MjY1czVDFK5Ucw8w0KjIHsejitkY5HBqm6pvOVNq+uS/rkPqPoFFw94S4V7o5MAq53NgRk0YL9DJNu/x7v986mnSBpLT4OTGXI7NA53bxBajZA4d5lXJRl4n33GINESovYruVl5k7bUiy6By4qW1sWahbYuyIVEcyy86H3J09NDGipI0LIbyq9bp/IPa1j0XlKObz3QDmSDKkdA7zylw7T+YTt3XlpjqfLmdX/zmWxZ3HVXnZhX6uMazPaDGWpyBNnFgfG/fIIczcuWU7OBLWsj/bmmF5BvkE/SDowdiedOTYOdysPH/6yN1xYareLt/CCimjfPj4kmNeOaYVMbfPKtIZJtddIQendB1SaOMxumqRqroJMECWxhTzvmbCZpNzkWGvGpvNqCYedcbdAofWunGvBzYtrN2pCUUaZomuMOWGYaw98bBllp5JybibF4513ccHU24x/wyxc8loTw68S35+63ARQSj14gY/ApoZtE14pHDaHIUqyWiRaK5bYlvz1xUE8xWzEH/hF36BP/pH/ygf+tCHOB6P/I7f8Tv4D//hP3zZn/+X//JfBoDg1T+//Mu//MrP/dW/+lf5rb/1t3I4HPiu7/oufuZnfuaV75/PZ/7kn/yTfOhDH+Lu7o4f/MEf5LOf/exX+vG/osOC/GvqN1qSz6NSNdfhnIDqArs2qatKHPH/zv5Hq2Ez9KPQD0KfZI9879UZG/uIGNSTUc8wvRQX2jbco29J9HdmtvsxuBZShrvbM/PcneQ8GVrV+W/Z503lJOT7hD5UR25NPltYWyGJV5N3T89Mdxsc+iV7rxboQdhluCJKW0+vnox54LKAyUpyknQ+uITUK/1AA3pGzxmNIbqRo5+MB2KE9ljRteyzqeHucE2uGyR6iE1PoBTzuU3t5MlRbp6t4vy3Gm1ETfSW6S2zLJW1F9ZWQCAn48lh5RCeb0michwQcXHJvHzsyNT9NRN+rsWuTvUia3Z9CBfqyKjsvEyJirmlCFZKmjsy4y24QWUYlIioJMRwaoNT+kjNdWRlEWRLsFTYsrsBNIe/tx51iLiTQ8neDpYgvrnKjiN7Sw54fAlKi4wK0PZ7NmTU9j8jMGagXLlk5Aj4zSt/3TKnk6/p+/XAQ5s594mTubD2G9OZN+cTn7h9wTe++TYff/Mdbt54JD3ptCdKv/Pn7PwhWJ95hccg/sfHwOD4Djz9HzC94/+9PYX2BPotpGaUE+QH58Uu55kvPt7w9nqgWWaunad14em8cKwbXzjd8YXlll9Z7zjrPNIYVJxf2qlsUe0loA4QDP79zQonqzSHxxDTBLpcuglz6hxkizwioZYRPIhMyXVxVytsTCw2M0lnyo1DacwlnOYFkMQ77YZVK4fceHM68ebhkTmvKML9OlOScTutTMGrrVmZqjGXxpxb0Bb82ZonBymlZLSw9EqxPlJYQCGXDkxTryy7Jk7nwraVMJ3++h1fUQX41ltv8b3f+7183/d9H//kn/wTPvKRj/Bf/+t/5Y033vhVf/fnfu7nePr06f7fH/3oR/d//72/9/f41Kc+xWc+8xm+67u+i09/+tP8wA/8AD/3cz+3/9yP/MiP8I//8T/m7//9v8+zZ8/44R/+Yf7AH/gD/Ot//a+/klP4yo6Yb3glM0q2aNkMEMTmvnPSxgzQTXIH3y5vjrQsJ/9+XnxTHG2Z9zwSYcabaDNsd56ZtltDJ0EnhZtOL6BbZW3VWxRLDiNbIa9CCrK+qKCToQe3eqk3jTw3WstIMua5AZ7pnU8TbYv2Y4lMfXPrGiu+8Tk5++osRkssYnuKDVhStDUNdLymmLdMwV/XcC3Vnt51PcY8USm3jTx3b9MNztm7Kr5rUNFOXwh/OosNusyNw7z6uaqwPFb60Hs0QNziZjz4JUFBOfXK2t23EHOiMzII8P4+fckXlGuIBkh/9bPJfte/NNvdwTLCXn0jIZLcMzvKtDsFBJN99ieIUxsC+SkxKx4AJ0/CgmZwaKTqoKIU3DTfxIgERKKF5a9xASbFPYoKfvw9ou4OfBqw+r0N6pXqDhgaHZUp9Ejxc5VslKn59S+N23nldlp5Np15Uheel0caiWaZRQpT8hFAHs4okYjqJuRN0OKz5DSStfg4ghevmvwZyZsFYtufL3uKe4DeddJt5+nTR+4OC28eHyhBbXnoM6tmzq1wUzzQ/ObDOzybToFLc3pSCfPbSidFh2Wl0G2IYkNDozh28NEsGzdpiXTGjXM9WApVFDHjxMxihUedWLSy9LKLYBdx38FFsyeK5uQNE9zJJCnNMvftyLkXPn92VfCaOofSEOCxOXBGTXak9RboULWwKsMVn2pVcvb5Xg5+blcfUXRN9AC19d2Al31P6Gu6JNBfp+MrCoB/+S//Zb7hG76Bn/qpn9q/9k3f9E2/pt/96Ec/yvPnz9/ze3/lr/wV/sSf+BP8sT/2xwD4zGc+wz/+x/+Yv/W3/hZ/9s/+Wd555x3+5t/8m/zdv/t3+V/+l/8FgJ/6qZ/iW7/1W/m3//bf8nt+z+/5Sk7j136M1pNGSREDGsnAHAopyWdmOzgAww5BYYgZhBn+NcGVWwKq/WXfNiq9ouptzOZINzlDeyL0WVzqrCZ08orP1WDUjSyLt251djcECY6ibEZ5y6utPifSsSOinJe8I7+mqZFzZ8vZg1ZLnrUHFcI6vpkV25VFjCD4x8BFe7SBgyuEQZqazwx2A04gOEfuDXfJ1MfwyZJvA7pkrAk6ddfsTMNv8IIylavKcgScnDo5uWxdDhTaumaXXhNjOjbaprSwg9HmbttDyLtX//0syqEoWZx60TTvMzIHnkCezQ12Jao3xLU81a//xUrky910AtHpO6VpBJMuu/uGDPkvDCSFZqXsVbkmkErMBb09KuKJl0mQ8c1NWFvH275Z2Zo7O4yA6BvZBeggkmLTc8k906tQLlfcx5jrBnkPeyUrMadjjK29cXGij5lgW1w6rZdA9nb8Pqiw9MyTcqaI2w0J5q1CaRynjXfqkZYnX7c1kUvwAx+dJjE6KOBV8fTCyItR7oX1mWuCDt6kdCE9JrIaj31GnsC2Je4OCyV8EIt0boqruTxsE//5/qN8ZHrgw9O9f84kwX9TjESJlna17gmUZToOKlmssomy4hJvLQJhFaVbGNomn/ItljnaxoPO1NR4YKZQETG2ENsGmKXRJbFp4pB8FlnFzXbPOpHF294fmh8494mmQlPvrtTUPXji+AHDk0EVD4hqnuTV4qITboYb4v8Jtyor5rQkS2zRtrVYO6Yx4iC9mrl+HY6vKPz+o3/0j/jkJz/JH/yDf5CPfvSjfPu3fzt/42/8jV/T737bt30bn/jEJ/h9v+/3vVK1revKz/7sz/L93//9lw+VEt///d/Pv/k3/waAn/3Zn2Xbtld+5lu+5Vv4xm/8xv1n3n0sy8KLFy9e+fOVHjsgYUe6xYPZEtYdlu02IvHQBAE4d8/+B3cvNyirkVfzwNhHbvylx97GCtUZk2iTdUjmWp6pOaDDK7EUgtUVu6/wspJfFvLLTH2ZqA+Jcg6wTk70O0OPSrpxybLek8u1xUxwa5l1qZhmz8xHS8+EoY+587yi/SWAFPXKYuqUWUMXMq4j3mYcUlmXjU/26hKialKJitr/kEAmpd5uTMfQx7wKfhe4/uVqXlMZBLfmmadOLcrNoXEzb9zMDrJwzp9noikJuRi1dqaqoSjj12XtxcWve2YqneO0MeVOyR6YfJ4J9BwlRqiz6Pgc446/d/U3bv4AhIwZI4yqMgBBPf4or7zHuDc76ENcPq9PRh9t+WOHG4NZKbODFmqJtqbEdTD/I7ikWRpJnUWL+kqlR5K4osrUmY6N6biRRtdArs7hKm5bgJCkcNWGvkosrwBVzQrH0rmrK8+nE8fc3FInkEGbVjbLPGwTWy80xJ+NHuMKkf15e/eRcNpDWXzEUN/xREUrDoKpsM1Gve1Mh403bk/cTSs1Kadt4ounW754vuVhm1CEY+4cS3NLr+j7eiVo4Y7Q3eYoOcLTJ4gpRLOF1QqLTdz3IwkXw24kOoWmmdu88pHykm+ZPs+3zJ/nm6bP80Z+DJk1RYDVStDvXWBbgCLepkegZuVQ3JT31Ge+uNzw2dNT3lkPrJaZs/Lm4UTNjkptUUVqIDab5qtzI8ZZcDevPD0s3M4bcxjipugAeeKVAoVd0BCRsOH3meR/PyCY//7f/zt//a//dT71qU/x5/7cn+Pf//t/z5/+03+aaZr4oR/6off8nU984hN85jOf4ZOf/CTLsvCTP/mT/N7f+3v5d//u3/G7ftfv4vOf/zy9dz72sY+98nsf+9jH+M//+T8D8Mu//MtM0/QlFeTHPvaxL5kljuMv/aW/xF/4C3/hKzm9LzmeTzf84uMLn1WAbw7dF7UNiHD1VpQWDSg7SEqhk2FB9LXgCfqeP4rJd2cfY5/Y02vD5dMctEWO1mjqRpOAtI2Jupn/d1jyyOZftxScv2ww0H8otvn3UlFvU2g4KpSO5B6I0Owglh5t310XEMgOREnZK4DBnze9nMPuFyajHdr9P89DJis+9wgU18+B4JY4uVNL32kgQ7R6v2ajvSgWZOFxLSXmKV6C52j1XYjuRq1w0IUzhha/xnP2fFXNK6Jubu3joBRlrjo0xKm5g0JvJSobwVL3YBXqKK9K/1wFu3cdXkF525ce1W/M0Ezw6xWvJUOBppvLvF25pBs4548wP54UCuS5MXQ+UxpzKIsqLZIJjENt+3U8b4VFHRIpOEp1nIeFIkmtTta2aH3t3E/0IhR+FQB9UfvzI8Cuk5p9ZiR4pS04oOTFNpPFARnPptP+dRdZPrFpQm/hC2qc2ky/ic1VoSenRaQOXFWA+71Qd4aQFpqyJ38GdPZq3DTxKFMAfxwdXJInRlPeMBLHsjpFAeOxZURmWoKDCbfZq71k7lrCQIBKmIaELZHiqO4ElNR40JmzFubUXMszn5hw1ZQXVjjZxL3OdMtkcaNbFy9IPPSZY1moyfbktMrG0Zzu9JIDRYQtqj4z9+pL5tf+cfO1XKVhAkusYxGNxz8yTou5MMo26FlXz+BUNlQrya73Kbm0zgON5sozXz8QzFcUAFWVT37yk/zYj/0YAN/+7d/Of/pP/4nPfOYzXzYAfvM3fzPf/M3fvP/393zP9/Df/tt/48d//Mf5O3/n7/w6Pvr7Hz/6oz/Kpz71qf2/X7x4wTd8wzd8Ra/xf3rzY/xvb33W0Yij/ZRgx1cnb/nYDCRxYWwRdO+1REcICQCi7Q/hl2uI7a0lw0nNsfkVEXqCcu/VmKVEe6r0ildUYfOzQ98ncQHuNSo4hPZYoHRsckCKpCA5I87fiVaFiPPD5NDR5rJcEpnbvtP2aI0GOGJsoKO/P5wJLNolcKnW7Nidj7ZKVEtx7ldwfjODs5eKW/Z2Sx4UC66rvMs80CyCXjLnmI1rKSMbj4c0+UOqpsgMKa2czxNdE+c2cZw2am5xP4S5dBcTNrdE0mTMxWWeRsdPxP3bZLQOC4463dKllWivtgXfCxBjI2EI8BUBwELY56z7n6DeJHOxgz0IGmgRJEdVirfqcu575ZVS8LyuVp0hnFthro0pd57VhbU1HpeJ81bRZjtVQ+I+954dZJSUokprmW0v8S3OXfb1sAdCFa/2BnKWhNlIYMQdJTosm/GOHJHkzhq3daOkTjFFk/J8Pu3r4u2sPDxAF+foruLPRjJHaO9iAvvCiMd4g/kF5GacG2zPvXpOLWMvhMd+xDRze3OGMpq4fjxuM1ThsanreVpntRLC8cIxbUjGifEYQmO1OjTZ3Uor1GY6xgtNNDJP8pnNoGN8tj9ls8LHyguepJXJ3HF+JfOwVRB4Vk+ICM0KL7Ybiii35UyJpLVJpojxRnnkJlVqMj5/vuXleuBxm6jB57upKzV1nzuTMDqbCmsXiKpS4gH0W5s8KRlVPyMZdoGFHHvD+XFm6yP4CcMe50O30/9+KsBPfOIT/Lbf9tte+dq3fuu38g/+wT/4it70O7/zO/lX/+pfAfDhD3+YnPOXIDo/+9nP8vGPfxyAj3/846zryttvv/1KFXj9M+8+5nlmnuev6HO9+/jD//P/mf/nf/v/QJA/U9ZL4NJo3TX/Iy1dgpsOwIuDX8rqSjASD+E1N+ndf48VZgk0+xyph0ahFqPfwvbE2D7asINbxtiaoGX3+duEcoa0CWxGuwU9QL9R0rGRn6w752s5+cOTxDmAY542UFx7BTMI50TQrMp0aJTq5HAnyeKmtjqgzWMDHxFrTxwj+GWvjvc24eXYW5qzYlU53KwXmPUrqcO7Aoj45x2fdde0DPBCSsahNLaY44EDPx7Ps4s871Vf2jmGLUAgo6I8Tp1D2XaQwNqcE7W1cY0kql08SUhO69ilM0MB5f1Qod4rvAQZbx3abldlm4S2q7uSjHa4ZhzeX+NnJyNNjXLcmGujFrtwuq6SEoCclJo6T6aFm7px7pmlO1dr07yDH/yI6j+FYDXC6Ty5OMB2QeZ6hh9zY2FPHF2DNvwfA02bc6yp3Km58+bx0duNrZJFWHvmXmZWqxzyxpwaT/PCQ/er+M56ZJqUh0WRo4supHeKjyTWq5D1Sqns/0wS3YUNyiL09ZJoanWy/WNKPN4fyLXz4Q+9YKqdhHIsjWPZeD6d4nN5q7NK55A3JmnM0lAyiybu+5HVyq4Is9mgxwsZRTFetMxjn6mpc5sXPpJf8j/VtwB4x2b+2/JRPtee8PPnN1mtsGrmC8st515ZNXPIjduyYiKelFjimDdu04kX7cB9n/ml0zPO4RFYkmdxN7WRRHhok5vmms+ZJbiISS7X8cIhdXHwmvreBWqaWVpmbZmtFR4fjr6/7OA5P8qk/NH/43fw9Ty+ogD4vd/7vfzcz/3cK1/7L//lv/Bbfstv+Yre9D/+x//IJz7xCQCmaeI7vuM7+Omf/ml+/+///YBXmj/90z/ND//wDwPwHd/xHdRa+emf/ml+8Ad/EHBU6c///M/z3d/93V/Re38lx+/68G/i//Zbfxv/r//v/wYo2oJQLhbkZ4hhQ3CCfW7S8Paihs+bnoWejXIeCFGCu/UeVaBF9WeE3Yq3NK2YB1rz4CZboT9V+l13tZm5YWQsC5skckDxd6uYJlgrtFWwuxDUrt0BH7uGqQeMHvMeh70bHDdsS47aMucXNgtgSoca9jDT1NyhXZS2Zbr3Pncblb34mdSvX4Bb/Lwu7bUdMLImpMO5z+RDzJhGa3BcrP3vKxpEfHV44TUlhvWJh61Qk1GkuXeaCE9vzpxXN27dtuxAjA61aFQXFm1RbxU/rNX1VwUOZQuwTWdZKy0n+hqPVQ1kygiCyiUQvlf5v5/WVRDcqyZxU98hbRaztk5ync8mF+WXUXmroZpZm2DHRKvdRY7lUv1pvJeaO248bBNLK8zVQRhv3jzwuHkFuGzFwTGj5dkdjJUEptroSejJKSVjZh5LwFu5Yy2DizIMzqMZHeH8mJkmQaryUpzvOecNM+G0VTbNHMpGU6B49/SQNua0cftk4QvTLU/nG774eMvjw8z6Pynt7cx2kzh+XigPPvP7EmUe8+TUkdpGfQnbExeiTw2XPLwvtOeGPDW+8IU7jseN4/HMkAlrJjwpC2tO3JWVLWWaCUsqnLRwCL+/o5wp4qhNh7VYCLzjajAmSCBCN/OguWnirXbkN03vcCcLH8vvMNGY541f3J7zth15Vk5M0nlolbVX3upHTr1wSI1DbjQRvthvmHPjLi984+0XeWu94cU687jNbD3xuccbDoFqLeLzSjQoDUVZNV8S4VifTnYXsLwDqARlyt4qTqLIU2Vdq9MeQlkrZ+MTt0/4of/5O9/nQfjqH19RAPyRH/kRvud7vocf+7Ef4w/9oT/Ez/zMz/ATP/ET/MRP/MT+Mz/6oz/KL/zCL/C3//bfBuDTn/403/RN38Rv/+2/nfP5zE/+5E/yL/7Fv+Cf/bN/tv/Opz71KX7oh36IT37yk3znd34nn/70p3l4eNhRoc+ePeOP//E/zqc+9SnefPNNnj59yp/6U3+K7/7u7/7qIUDxDfSv/F/+V37T7RP+H//5Z1lZ9xmSDGBMS87dGpt4d95V2uLvFtyizf9Oyitt0C9909gbo4tkNQAUCqVBX2G7caRpuzGosdGsCZZEPklUgj7k77Ox3hh2MGwy5OhzoVobba1sy7VfzvhURpo6OlqOPbmxbGTwliFPDlufJm9/5QieRWAxhz5Lf1U7MsqaCyk6JNUkgsN1C3R3Yg9gSjkMKxoLuP6rR0newmk6/OguVY6ZCzj3ZsxlSHb5w9xNQgos07bqFW5WalFq7g5UUKF1r4CSdW7nzUEKmtisOOS7R0V5zYsMsrhU3PGgi1v/tFH5vV/r592VYbRQGztJ/aLX6utFxfyJns2TjJBny1MnF7/nOY3rG3/bQHHClJVj3Xg2ndk0c79V7teZJc4vJyPjaE7DEX8++xO2rezakHCp7MwsPObiTUYVEHQWb4f42qiTkkunVOON45mPH1/y0Cfut4lzr15ZdGMKVMvzenKjWIO1FA7FeWolK1/MncftlrNNpJipppEgjBO+LHdPOA3XzVWo62jx+W1cnwjblthOidtvXLi5O1GLq7yU3LnJXgk+KSsH2ZhzICRJbDax+mA2nEWETvK1pwWLrGhObffHa2ROWoCJs078lvkLvOgHfsWe8MV2x+e3O7643vFym3nYKosWllb2E8rJ2Cyz5o3HPnFIG9948xYlKS+2A+9sR95ZD5w3r/YM4xBrftNMN5dOu04sU1AspqzMZdvXZQ0zxvE7zRJbc8DY1v3fLSrAHPf///rx/wP/90/+r7w537zPM/DVP76iAPi7f/fv5h/+w3/Ij/7oj/IX/+Jf5Ju+6Zv49Kc/zR/5I39k/5lf+qVf4ud//uf3/17XlT/zZ/4Mv/ALv8DNzQ2/83f+Tv75P//nfN/3fd/+M3/4D/9hPve5z/Hn//yf55d/+Zf5tm/7Nv7pP/2nrwBjfvzHf5yUEj/4gz/Isiz8wA/8AH/tr/21X8+5/5qOmjI/+h3fx5/6nd/Dv//s/49feHwHgHPfeFJnXqwLN2mm987WjNsy8eK08KTMtM2NaW9q5eHlwtM6sTw2ssGUCw8PC0/uDjyeFkpOlJJ4PG3c3c7cPy7Ms+Oyl965Pc68PC3cHCZa7yzZON4V3pKFm7uJ1RqmxjFVXj6uPC0HzstGsUSVxEtdeXI387IvTFMiZzjLwrM68/ayMUtFzVh7567OvNjO3NWJZo0unds8886ycJcPLK1jYhxq5qGfeT5PnG2hJJhS4bEt3JYjL9aVYlNk8I0n9cDL7cxNmeimbNr9ep1X7vLMtnX0/9/evcZGUb5tAL92ZnZmd7unlpYuCAUMWgoCKkqpeMJWCsHYEBJMAwaFiAiJHzQoGLSJiZYARpEAUUGIB4qCUUw4BCxHsWAh9ERrRYGUAIVA6Xbb7nHm/n/o26FLKxR2eel271/SDzvPvdNnrs7und3OgQCLZEST3webrMCntV09XDEKaDV44TAb4afA/90LUUJzyA+b0QxP0AezIEEQCD41hATJhOaQD2ZJRkjVECQNFkmGJ+iDTZKhou3q/GZRhjvgQ4JoQUsoBFJFSIa2bXCYZPjJB6NggGiQ0BwMwCaZ0KL6YJFEiIKGgBaCRTShMeCHyWBCQNMQCAEJooJGvx9WUUFAVUEAzJKIJn8AdtkErz8IgQTIoojmgB922YSWYABGQYAgCPAGg7ArCpr8fpiNRhBp8Kkq7LICt98HmyLDr6pQNUKCaITHH4BVVuAPBUEGwGSU0KT6YDcraFGDbX8bSYCXvHDKClpVP4xC2+k7PjUIq2SGJ+RDgigBUGEQ/bBJMtxBP2SDBa1BDUEywGSQ0RzywWZU4FXbDqVXRBGeoB820YyWUAgCCZAMElpCPjhkBZ5QAIrQdmd3rxqCzajAE/DDIhmhahqC0JBglOEJemGTZYQQgkFQYTWKIIMbTqOCFjWEkCZBNBjhVX2wGxWo1AqLRLAIhBC1QBGtaFV9UMkMv2qEOwDISEBDkwpLyATNp4FaNVhFGc3NPljNMgJBDZqmwawY4Wn1w5ZggtcXgCAIMBpFtPj8sFpMaPUFICoCDLKIZgRhdRjhl5thtbR91a5SADajCSHywC5JAAIQhCBMBhl+rRWKmICQFgCBYBRkeNVWmAQr/FoABAEGGOHXfLCIFgSpBbKh7aKwXi0ARUiAT2uFVZRgMngBQwACbGgMBaDBhtYQ4NcESDDDHWzbl71a2wnyJlGCV2uFw2iCT/MjQQzBKhJ8mh+iwYaGQAgamQBNRKsWgk1S4KcWWEQJKgF+TYNFNMET8sIiKghS2z5nEmS0aq1wGBX41CAEA6CIElpCXiRIFrQE225FIkBCSzCIBMkMtz+A/hYnRiT2w4AE511/7+4OA4WdrNN7NTU1weFwwO12h52QzxhjLDZE+3383p6GzxhjjN0j3AAZY4zFJW6AjDHG4hI3QMYYY3GJGyBjjLG4xA2QMcZYXOIGyBhjLC5xA2SMMRaXuAEyxhiLS7d1KbRY1n7Bmzu5MS5jjLF7r/39O1oXMIubBujxeADgtu8JyBhjrGfxeDxwOBwRrydurgWqaRouXLgAm8122zdgbL+Z7rlz5/g6ouA8bsR5XMdZhOM8rotGFkQEj8eD/v37QxAi/w9e3HwCFAQBAwYMiGgddrs97nfijjiPcJzHdZxFOM7jukiziMYnv3Z8EAxjjLG4xA2QMcZYXOIG2A2KoqCgoACKotzrqfQInEc4zuM6ziIc53FdT8wibg6CYYwxxjriT4CMMcbiEjdAxhhjcYkbIGOMsbjEDZAxxlhc6hUNcO3atRg1apR+gmVWVhZ27typj/t8PixYsAB9+vSB1WrFtGnTcOnSpbB11NXVYcqUKbBYLOjbty8WLlyIUCgUVrN//348+uijUBQFQ4cOxcaNGzvNZfXq1Rg8eDBMJhMyMzPx559/ho13Zy6RijSP8vJy5OfnY+DAgTCbzcjIyMDKlSs7/Z5YyCMa+0a7q1evYsCAATAYDGhsbAwbi4UsgOjlsXHjRowaNQomkwl9+/bFggULwsYrKirw1FNPwWQyYeDAgVi2bFmndWzZsgXDhg2DyWTCyJEjsWPHjrBxIsIHH3yAfv36wWw2IycnB6dOnYpSEtHJorS0FNnZ2XA6nUhMTERubi7Ky8tjLgvg1nl8+eWXePbZZ2G327t8DQBAQ0MDZsyYAbvdDqfTiTlz5qC5uTmspkflQb3Ar7/+Stu3b6e///6bamtr6b333iOj0UhVVVVERDRv3jwaOHAgFRcX07Fjx2jcuHH0xBNP6M8PhUL00EMPUU5ODp04cYJ27NhBycnJtHjxYr3m9OnTZLFY6K233qLq6mpatWoViaJIu3bt0ms2b95MsizT119/TSdPnqTXXnuNnE4nXbp0Sa+51Vx6Qh7r16+nN998k/bv30///vsvffvtt2Q2m2nVqlUxl0ekWXSUl5dHkydPJgB07dq1mMsiWnl88skn1L9/f/r+++/pn3/+ofLyctq2bZs+7na7KTU1lWbMmEFVVVVUVFREZrOZvvjiC73m8OHDJIoiLVu2jKqrq2nJkiVkNBqpsrJSr1m6dCk5HA765ZeAcYAbAAAIlklEQVRfqLy8nF588UUaMmQIeb3eHpGFx+OhpKQkeuWVV+ivv/6iqqoqmjZtGqWmplIgEIipLLqTx6effkqFhYVUWFjY6TXQbtKkSTR69Gg6cuQIHTp0iIYOHUr5+fn6eE/Lo1c0wK4kJibSunXrqLGxkYxGI23ZskUfq6mpIQBUUlJCREQ7duwgQRCovr5er1m7di3Z7Xby+/1ERPTOO+/QiBEjwn7HSy+9RLm5ufrjsWPH0oIFC/THqqpS//79qbCwkIioW3O5W24nj67Mnz+fJkyYoD+O5TzuJIs1a9bQM888Q8XFxZ1e/LGcBdHt5dHQ0EBms5l+++23/1zfmjVrKDExUX/tEBG9++67lJ6erj+ePn06TZkyJex5mZmZ9PrrrxMRkaZp5HK5aPny5fp4Y2MjKYpCRUVFkW3wTdxOFqWlpQSA6urq9JqKigoCQKdOnSKi2M6C6HoeHe3bt6/LBlhdXU0AqLS0VF+2c+dOMhgMdP78eSLqeXn0iq9AO1JVFZs3b0ZLSwuysrJw/PhxBINB5OTk6DXDhg1DWloaSkpKAAAlJSUYOXIkUlNT9Zrc3Fw0NTXh5MmTek3HdbTXtK8jEAjg+PHjYTWCICAnJ0ev6c5cou1O8uiK2+1GUlKS/jgW87jTLKqrq/Hhhx/im2++6fICvLGYBXBneezZsweapuH8+fPIyMjAgAEDMH36dJw7d05/TklJCZ5++mnIshyWR21tLa5du6bX3CyzM2fOoL6+PqzG4XAgMzOzx+wb6enp6NOnD9avX49AIACv14v169cjIyMDgwcPjtksusqjO0pKSuB0OvHYY4/py3JyciAIAo4eParX9KQ8ek0DrKyshNVqhaIomDdvHn7++WcMHz4c9fX1kGUZTqczrD41NRX19fUAgPr6+rDm1z7ePnazmqamJni9Xly5cgWqqnZZ03Edt5pLtESSx43++OMP/PDDD5g7d66+LJbyiCQLv9+P/Px8LF++HGlpaV2uP5ayACLL4/Tp09A0DR9//DE+++wzbN26FQ0NDXj++ecRCAT0bbnT11PH8Y7P66omGiLJwmazYf/+/fjuu+9gNpthtVqxa9cu7Ny5E5Ik3XQ7O25jT8kC+O88uqO+vh59+/YNWyZJEpKSkqLyXns38ug1d4NIT09HWVkZ3G43tm7dilmzZuHAgQP3elr3TLTyqKqqQl5eHgoKCjBx4sS7MNO7L5IsFi9ejIyMDMycOfMuz/L/TyR5aJqGYDCIzz//XN8fioqK4HK5sG/fPuTm5t7NqUddJFl4vV7MmTMH48ePR1FREVRVxYoVKzBlyhSUlpbCbDbf5dlH33/l0d0mGGt6zSdAWZYxdOhQjBkzBoWFhRg9ejRWrlwJl8uFQCDQ6YilS5cuweVyAQBcLleno7vaH9+qxm63w2w2Izk5GaIodlnTcR23mku0RJJHu+rqamRnZ2Pu3LlYsmRJ2Fgs5RFJFnv37sWWLVsgSRIkSUJ2djYAIDk5GQUFBfp2xEoWQGR59OvXDwDC3hBTUlKQnJyMuro6fVvu9PXUcbzj87qqiYZIsti0aRPOnj2LDRs24PHHH8e4ceOwadMmnDlzBtu2bbvpdnbcxp6SBfDfeXSHy+XC5cuXw5aFQiE0NDRE5b32buTRaxrgjTRNg9/vx5gxY2A0GlFcXKyP1dbWoq6uTv9uOysrC5WVlWF/vD179sBut+sv9KysrLB1tNe0r0OWZYwZMyasRtM0FBcX6zXdmcvdcjt5AMDJkycxYcIEzJo1Cx999FGn9cVyHreTxU8//YTy8nKUlZWhrKwM69atAwAcOnRIP/Q/lrNon0t38xg/fry+vF1DQwOuXLmCQYMGAWjL4+DBgwgGg3rNnj17kJ6ejsTERL3mZpkNGTIELpcrrKapqQlHjx7tMftGa2srBEEIu8F2+2NN0/TtjNUsgOt5dEdWVhYaGxtx/PhxfdnevXuhaRoyMzP1mh6Vx20dMtNDLVq0iA4cOEBnzpyhiooKWrRoERkMBtq9ezcRtR3OnJaWRnv37qVjx45RVlYWZWVl6c9vPw1i4sSJVFZWRrt27aKUlJQuT4NYuHAh1dTU0OrVq7s81F1RFNq4cSNVV1fT3Llzyel0hh1dequ59IQ8KisrKSUlhWbOnEkXL17Ufy5fvhxzeUSaxY26OgIuVrKIVh55eXk0YsQIOnz4MFVWVtILL7xAw4cP1w/9b2xspNTUVHr55ZepqqqKNm/eTBaLpdOh7pIk0YoVK6impoYKCgq6PNTd6XTStm3bqKKigvLy8qJ66H+kWdTU1JCiKPTGG29QdXU1VVVV0cyZM8nhcNCFCxdiKovu5HHx4kU6ceIEffXVVwSADh48SCdOnKCrV6/q65g0aRI98sgjdPToUfr999/pgQceCDsNoqfl0Ssa4OzZs2nQoEEkyzKlpKRQdna2/kcjIvJ6vTR//nxKTEwki8VCU6dOpYsXL4at4+zZszR58mQym82UnJxMb7/9NgWDwbCaffv20cMPP0yyLNP9999PGzZs6DSXVatWUVpaGsmyTGPHjqUjR46EjXdnLpGKNI+CggIC0Oln0KBBMZdHNPaNG7f5xgbYvrynZ0EUnTzcbjfNnj2bnE4nJSUl0dSpU8NOBSAiKi8vpyeffJIURaH77ruPli5d2mkuP/74Iz344IMkyzKNGDGCtm/fHjauaRq9//77lJqaSoqiUHZ2NtXW1vaoLHbv3k3jx48nh8NBiYmJ9Nxzz3U6bSUWsiC6dR7/9b7QcV+/evUq5efnk9VqJbvdTq+++ip5PJ4emwffDokxxlhc6rX/A2SMMcZuhhsgY4yxuMQNkDHGWFziBsgYYywucQNkjDEWl7gBMsYYi0vcABljjMUlboCMMcbiEjdAxhhjcYkbIGOMsbjEDZAxxlhc4gbIGGMsLv0PNRk88da2LkIAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import geopandas\n", + "\n", + "df = geopandas.GeoDataFrame.from_features(coordinates)\n", + "print(df)\n", + "df.plot(df[\"elevation_data\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ "/home/chris/projects/ifk-storm-water-management/.venv/lib/python3.10/site-packages/richdem/__init__.py:107: UserWarning: This figure includes Axes that are not compatible with tight_layout, so results might be incorrect.\n", " plt.tight_layout()\n" ] @@ -135,16 +213,62 @@ } ], "source": [ - "import richdem as rd\n", - "\n", + "d8_fig = rd.rdShow(accum_d8, zxmin=750, zxmax=850, zymin=750, zymax=550, figsize=(8,5.5), cmap='jet')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ "dem = rd.LoadGDAL(tif_filename, no_data=-9999)\n", + "dem.geotransform" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import rasterio\n", + "from rasterio.enums import Resampling\n", "\n", - "#Fill depressions with epsilon gradient to ensure drainage\n", - "rd.FillDepressions(dem, epsilon=True, in_place=True)\n", + "upscale_factor = 2\n", "\n", - "#Get flow accumulation with no explicit weighting. The default will be 1.\n", - "accum_d8 = rd.FlowAccumulation(dem, method='D8')\n", - "d8_fig = rd.rdShow(accum_d8, zxmin=750, zxmax=850, zymin=750, zymax=550, figsize=(8,5.5), cmap='jet')" + "with rasterio.open(tif_filename) as dataset:\n", + "\n", + " # resample data to target shape\n", + " data = dataset.read(\n", + " out_shape=(\n", + " dataset.count,\n", + " int(dataset.height * upscale_factor),\n", + " int(dataset.width * upscale_factor)\n", + " ),\n", + " resampling=Resampling.bilinear # will not keep the original val on points\n", + " )\n", + "\n", + " # scale image transform\n", + " transform = dataset.transform * dataset.transform.scale(\n", + " (dataset.width / data.shape[-1]),\n", + " (dataset.height / data.shape[-2])\n", + " )\n", + "# [102.80466, 106.27118, 107.15629, 102.40781, 97.38013]\n", + "# data[0][0][0:5]\n", + "\n", + "rda = rd.rdarray(data[0], no_data=-9999)\n", + "\n", + "# kolla hur det förhåller sig med -9999 vid interpolering\n", + "rda_fill = rd.FillDepressions(rda, in_place=False)\n", + "fill_fig = rd.rdShow(rda_fill - rda, zxmin=750, zxmax=850, zymin=750, zymax=550, figsize=(8,5.5), cmap='jet')" ] } ], diff --git a/src/storm_water_management/main.py b/src/storm_water_management/main.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/storm_water_management/main.py @@ -0,0 +1 @@ + diff --git a/src/storm_water_management/storm_water_management.py b/src/storm_water_management/storm_water_management.py deleted file mode 100644 index b1f70a8..0000000 --- a/src/storm_water_management/storm_water_management.py +++ /dev/null @@ -1,6 +0,0 @@ -"""storm_water_management module.""" -import rasterio - -def temp(): - """Temporary function.""" - return True diff --git a/src/storm_water_management/utils.py b/src/storm_water_management/utils.py new file mode 100644 index 0000000..53fc3f7 --- /dev/null +++ b/src/storm_water_management/utils.py @@ -0,0 +1,93 @@ +import geojson +import numpy as np +import rasterio +import richdem + + +def get_coordinate_center_points_from_tfw( + tfw: list, + elev_data: np.array, + flow_data: richdem.rdarray, + n_points_x: int, + n_points_y: int, +) -> list: + """Get coordinates for centerpoints + + Args: + tfw: + + Retrun: + elevation data + """ + size_x = tfw[0] + size_y = tfw[3] + upper_left_x = tfw[4] + size_x / 2 + upper_left_y = tfw[5] - size_y / 2 + + points = [] + for row in range(n_points_y): + for col in range(n_points_x): + center_x = upper_left_x + (col * size_x) + center_y = upper_left_y - (row * size_y) + points.append( + geojson.Feature( + geometry=geojson.Point((center_x, center_y)), + properties={ + "elevation_data": float(elev_data[row][col]), + "water_flow": flow_data[row][col], + }, + ) + ) + + return points + + +def get_elevation_data_from_tif(filename: str) -> np.array: + """Get elevation data + + Args: + filename: name of tif file + + Retrun: + elevation data + """ + with rasterio.open(filename) as f: + elevation_data = f.read() + + return elevation_data[0] + + +def get_coordinates_from_tfw(filename: str) -> np.array: + """Get elevation data + + Args: + filename: name of tif file + + Retrun: + elevation data + """ + with open(filename, "r") as f: + tfw = [float(x) for x in f.readlines()] + + return tfw + + +if __name__ == "__main__": + import numpy as np + + tif_filename = r"/home/chris/projects/ifk-storm-water-management/data/64_3_2023.tif" + tfw_filename = tif_filename.split(".")[0] + r".tfw" + + elevation_data = get_elevation_data_from_tif(tif_filename) + tfw = get_coordinates_from_tfw(tfw_filename) + + elev_max = np.amax(elevation_data) + # 102.80466 , 103.67129 , 105.40455 , 106.492455, 106.93501 + print(type(float(elevation_data[0][0]))) + list(elevation_data[0][0:5]) + + coordinates = get_coordinate_center_points_from_tfw(tfw, elevation_data, 20, 20) + print(coordinates[0]) + + with open("temp_file.json", "w") as f: + geojson.dump(coordinates, f) diff --git a/tests/test_unit.py b/tests/test_unit.py index dbc32d6..1fb3db5 100644 --- a/tests/test_unit.py +++ b/tests/test_unit.py @@ -1,4 +1,5 @@ """Temporary unit test.""" + from storm_water_management.storm_water_management import temp